[PATCH] f2fs: gc: fix the variable used in PTR_ERR()

From: Xu Wang
Date: Mon Jul 13 2020 - 04:10:20 EST


PTR_ERR should access the value just tested by IS_ERR, so fix
the variable used in PTR_ERR().

Signed-off-by: Xu Wang <vulab@xxxxxxxxxxx>
---
drivers/gpu/drm/i915/gt/selftest_lrc.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/gpu/drm/i915/gt/selftest_lrc.c b/drivers/gpu/drm/i915/gt/selftest_lrc.c
index 924bc01ef526..d2587e46afe9 100644
--- a/drivers/gpu/drm/i915/gt/selftest_lrc.c
+++ b/drivers/gpu/drm/i915/gt/selftest_lrc.c
@@ -1349,7 +1349,7 @@ static int live_timeslice_nopreempt(void *arg)

ce = intel_context_create(engine);
if (IS_ERR(ce)) {
- err = PTR_ERR(rq);
+ err = PTR_ERR(ce);
goto out_spin;
}

--
2.17.1