drm/i915/selftest: Fix use of err in igt_reset_{fail, nop}_engine()
authorNathan Chancellor <nathan@kernel.org>
Fri, 13 Aug 2021 17:11:58 +0000 (10:11 -0700)
committerJoonas Lahtinen <joonas.lahtinen@linux.intel.com>
Tue, 24 Aug 2021 09:21:50 +0000 (12:21 +0300)
commitac5a2dff428ab59b5c5bbb4b28311141aa461c07
tree2f48922e8b09e40531c9695f389aa5cd3fc637c4
parent81a14bedae5ba88e2e2c6a53fd8f62dddabf51d2
drm/i915/selftest: Fix use of err in igt_reset_{fail, nop}_engine()

Clang warns:

In file included from drivers/gpu/drm/i915/gt/intel_reset.c:1514:
drivers/gpu/drm/i915/gt/selftest_hangcheck.c:465:62: warning: variable
'err' is uninitialized when used here [-Wuninitialized]
        pr_err("[%s] Create context failed: %d!\n", engine->name, err);
                                                                  ^~~
...
drivers/gpu/drm/i915/gt/selftest_hangcheck.c:580:62: warning: variable
'err' is uninitialized when used here [-Wuninitialized]
        pr_err("[%s] Create context failed: %d!\n", engine->name, err);
                                                                  ^~~
...
2 warnings generated.

This appears to be a copy and paste issue. Use ce directly using the %pe
specifier to pretty print the error code so that err is not used
uninitialized in these functions.

Fixes: 3a7b72665ea5 ("drm/i915/selftest: Bump selftest timeouts for hangcheck")
Reported-by: Dan Carpenter <dan.carpenter@oracle.com>
Signed-off-by: Nathan Chancellor <nathan@kernel.org>
Reviewed-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Signed-off-by: Joonas Lahtinen <joonas.lahtinen@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20210813171158.2665823-1-nathan@kernel.org
drivers/gpu/drm/i915/gt/selftest_hangcheck.c