spu-kernel: spss_utils: Fix format string of error prints

This change fixes format string of error prints.

Change-Id: I27c9b85de066881a5c59e0366789df4204eaa2a8
Signed-off-by: Nurit Lichtenstein <quic_nuritl@quicinc.com>
This commit is contained in:
Nurit Lichtenstein
2022-11-14 14:57:51 +02:00
parent 0e8eb30dde
commit e27660e89f

View File

@@ -543,7 +543,7 @@ static long spss_utils_ioctl(struct file *file,
} }
if (copy_from_user(data, (void __user *)arg, size)) { if (copy_from_user(data, (void __user *)arg, size)) {
pr_err("copy_from_user() failed, cmd [0x%x]\n", pr_err("copy_from_user() failed, cmd [0x%x] size [0x%x]\n",
cmd, size); cmd, size);
return -EFAULT; return -EFAULT;
} }