]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
accel/amdxdna: Fix incorrect return value in aie2_hwctx_sync_debug_bo()
authorLizhi Hou <lizhi.hou@amd.com>
Fri, 24 Oct 2025 16:26:08 +0000 (09:26 -0700)
committerLizhi Hou <lizhi.hou@amd.com>
Fri, 24 Oct 2025 20:02:09 +0000 (13:02 -0700)
When the driver issues the SYNC_DEBUG_BO command, it currently returns 0
even if the firmware fails to execute the command. Update the driver to
return -EINVAL in this case to properly indicate the failure.

Reported-by: Dan Carpenter <dan.carpenter@linaro.org>
Closes: https://lore.kernel.org/dri-devel/aPsadTBXunUSBByV@stanley.mountain/
Fixes: 7ea046838021 ("accel/amdxdna: Support firmware debug buffer")
Reviewed-by: Mario Limonciello (AMD) <superm1@kernel.org>
Signed-off-by: Lizhi Hou <lizhi.hou@amd.com>
Link: https://patch.msgid.link/20251024162608.1544842-1-lizhi.hou@amd.com
drivers/accel/amdxdna/aie2_ctx.c

index 63450b7773ac1db230e15d4ae2c05535311b5698..c6c473c7835222038aea2c60eb1ad98d24c8c35e 100644 (file)
@@ -879,7 +879,7 @@ int aie2_hwctx_sync_debug_bo(struct amdxdna_hwctx *hwctx, u32 debug_bo_hdl)
        aie2_cmd_wait(hwctx, seq);
        if (cmd.result) {
                XDNA_ERR(xdna, "Response failure 0x%x", cmd.result);
-               return ret;
+               return -EINVAL;
        }
 
        return 0;