drm/i915/guc: Remove bogus null check
authorRodrigo Vivi <rodrigo.vivi@intel.com>
Thu, 28 Mar 2024 21:31:07 +0000 (17:31 -0400)
committerRodrigo Vivi <rodrigo.vivi@intel.com>
Wed, 3 Apr 2024 18:44:22 +0000 (14:44 -0400)
commit74065388607f78fdeca4cd20ac331eefcdefc5ea
tree4d9dd76c98c5f7d84a2822d187e7ebb1f1a92343
parent2bebae0112b117de7e8a7289277a4bd2403b9e17
drm/i915/guc: Remove bogus null check

This null check is bogus because we are already using 'ce' stuff
in many places before this function is called.

Having this here is useless and confuses static analyzer tools
that can see:

struct intel_engine_cs *engine = ce->engine;

before this check, in the same function.

Reported-by: kernel test robot <lkp@intel.com>
Reported-by: Dan Carpenter <dan.carpenter@linaro.org>
Closes: https://lore.kernel.org/r/202403101225.7AheJhZJ-lkp@intel.com/
Cc: Vinay Belgaumkar <vinay.belgaumkar@intel.com>
Cc: John Harrison <John.C.Harrison@Intel.com>
Reviewed-by: Andi Shyti <andi.shyti@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20240328213107.90632-1-rodrigo.vivi@intel.com
Signed-off-by: Rodrigo Vivi <rodrigo.vivi@intel.com>
drivers/gpu/drm/i915/gt/uc/intel_guc_submission.c