diff options
author | Akira Takeuchi <takeuchi.akr@jp.panasonic.com> | 2013-06-28 16:53:01 +0100 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2013-06-28 16:53:01 +0100 |
commit | c6dc9f0a4eeb7c014904475372c66e6d0ac5a572 (patch) | |
tree | d97a2ca85db1e46820cee0fc3a48bd3db1ad4bec /arch | |
parent | 98b6ed0f2bf4abfb759206aa70690636372bdee7 (diff) |
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: David Howells <dhowells@redhat.com>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/mn10300/include/asm/uaccess.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mn10300/include/asm/uaccess.h b/arch/mn10300/include/asm/uaccess.h index 780560b330d9..d7966e0f7698 100644 --- a/arch/mn10300/include/asm/uaccess.h +++ b/arch/mn10300/include/asm/uaccess.h @@ -161,7 +161,7 @@ struct __large_struct { unsigned long buf[100]; }; #define __get_user_check(x, ptr, size) \ ({ \ - const __typeof__(ptr) __guc_ptr = (ptr); \ + const __typeof__(*(ptr))* __guc_ptr = (ptr); \ int _e; \ if (likely(__access_ok((unsigned long) __guc_ptr, (size)))) \ _e = __get_user_nocheck((x), __guc_ptr, (size)); \ |