diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2015-02-18 13:02:24 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2015-02-18 13:02:24 -0500 |
commit | eaa0eda56223815cd9dc1225f715ff673ae77198 (patch) | |
tree | 12ed5208dda2ecbf2a652d6c54f83c58f362707d /arch/openrisc | |
parent | cad3ab5883b35b044200820bf2e1fbabe742740a (diff) | |
parent | 643165c8bbc8617d8222cb50c89e34fe64d226cf (diff) |
Merge tag 'asm-generic-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic
Pull asm-generic uaccess.h cleanup from Arnd Bergmann:
"Like in 3.19, I once more have a multi-stage cleanup for one
asm-generic header file, this time the work was done by Michael
Tsirkin and cleans up the uaccess.h file in asm-generic, as well as
all architectures for which the respective maintainers did not pick up
his patches directly"
* tag 'asm-generic-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/arnd/asm-generic: (37 commits)
sparc32: nocheck uaccess coding style tweaks
sparc64: nocheck uaccess coding style tweaks
xtensa: macro whitespace fixes
sh: macro whitespace fixes
parisc: macro whitespace fixes
m68k: macro whitespace fixes
m32r: macro whitespace fixes
frv: macro whitespace fixes
cris: macro whitespace fixes
avr32: macro whitespace fixes
arm64: macro whitespace fixes
arm: macro whitespace fixes
alpha: macro whitespace fixes
blackfin: macro whitespace fixes
sparc64: uaccess_64 macro whitespace fixes
sparc32: uaccess_32 macro whitespace fixes
avr32: whitespace fix
sh: fix put_user sparse errors
metag: fix put_user sparse errors
ia64: fix put_user sparse errors
...
Diffstat (limited to 'arch/openrisc')
-rw-r--r-- | arch/openrisc/include/asm/uaccess.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/openrisc/include/asm/uaccess.h b/arch/openrisc/include/asm/uaccess.h index ab2e7a198a4c..a6bd07ca3d6c 100644 --- a/arch/openrisc/include/asm/uaccess.h +++ b/arch/openrisc/include/asm/uaccess.h | |||
@@ -192,7 +192,7 @@ struct __large_struct { | |||
192 | ({ \ | 192 | ({ \ |
193 | long __gu_err, __gu_val; \ | 193 | long __gu_err, __gu_val; \ |
194 | __get_user_size(__gu_val, (ptr), (size), __gu_err); \ | 194 | __get_user_size(__gu_val, (ptr), (size), __gu_err); \ |
195 | (x) = (__typeof__(*(ptr)))__gu_val; \ | 195 | (x) = (__force __typeof__(*(ptr)))__gu_val; \ |
196 | __gu_err; \ | 196 | __gu_err; \ |
197 | }) | 197 | }) |
198 | 198 | ||
@@ -202,7 +202,7 @@ struct __large_struct { | |||
202 | const __typeof__(*(ptr)) * __gu_addr = (ptr); \ | 202 | const __typeof__(*(ptr)) * __gu_addr = (ptr); \ |
203 | if (access_ok(VERIFY_READ, __gu_addr, size)) \ | 203 | if (access_ok(VERIFY_READ, __gu_addr, size)) \ |
204 | __get_user_size(__gu_val, __gu_addr, (size), __gu_err); \ | 204 | __get_user_size(__gu_val, __gu_addr, (size), __gu_err); \ |
205 | (x) = (__typeof__(*(ptr)))__gu_val; \ | 205 | (x) = (__force __typeof__(*(ptr)))__gu_val; \ |
206 | __gu_err; \ | 206 | __gu_err; \ |
207 | }) | 207 | }) |
208 | 208 | ||