mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-06 10:58:48 +09:00
drm/i915/gsc: Fix error code in intel_gsc_uc_heci_cmd_submit_nonpriv()
This should return negative -EAGAIN instead of positive EAGAIN.
Fixes: e5e1e6d28e ("drm/i915/pxp: Add MTL helpers to submit Heci-Cmd-Packet to GSC")
Signed-off-by: Dan Carpenter <dan.carpenter@linaro.org>
Reviewed-by: Alan Previn <alan.previn.teres.alexis@intel.com>
Reviewed-by: Andi Shyti <andi.shyti@linux.intel.com>
Signed-off-by: Andi Shyti <andi.shyti@linux.intel.com>
Link: https://patchwork.freedesktop.org/patch/msgid/ZH7sr+Vs4zOQoouU@moroto
This commit is contained in:
committed by
Andi Shyti
parent
589f4924e8
commit
24335848e5
@@ -202,7 +202,7 @@ out_ww:
|
||||
if (++trials < 10)
|
||||
goto retry;
|
||||
else
|
||||
err = EAGAIN;
|
||||
err = -EAGAIN;
|
||||
}
|
||||
}
|
||||
i915_gem_ww_ctx_fini(&ww);
|
||||
|
||||
Reference in New Issue
Block a user