Commit c6dc9f0a authored by Akira Takeuchi's avatar Akira Takeuchi Committed by David Howells

mn10300: Allow to pass array name to get_user()

This fixes the following compile error:

CC block/scsi_ioctl.o
block/scsi_ioctl.c: In function 'sg_scsi_ioctl':
block/scsi_ioctl.c:449: error: invalid initializer
Signed-off-by: default avatarDavid Howells <dhowells@redhat.com>
parent 98b6ed0f
...@@ -161,7 +161,7 @@ struct __large_struct { unsigned long buf[100]; }; ...@@ -161,7 +161,7 @@ struct __large_struct { unsigned long buf[100]; };
#define __get_user_check(x, ptr, size) \ #define __get_user_check(x, ptr, size) \
({ \ ({ \
const __typeof__(ptr) __guc_ptr = (ptr); \ const __typeof__(*(ptr))* __guc_ptr = (ptr); \
int _e; \ int _e; \
if (likely(__access_ok((unsigned long) __guc_ptr, (size)))) \ if (likely(__access_ok((unsigned long) __guc_ptr, (size)))) \
_e = __get_user_nocheck((x), __guc_ptr, (size)); \ _e = __get_user_nocheck((x), __guc_ptr, (size)); \
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment