소스 검색

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 <[email protected]>
Nurit Lichtenstein 2 년 전
부모
커밋
e27660e89f
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      drivers/spss_utils.c

+ 1 - 1
drivers/spss_utils.c

@@ -543,7 +543,7 @@ static long spss_utils_ioctl(struct file *file,
 		}
 
 		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);
 			return -EFAULT;
 		}