Commit cb66fb3f authored by Ralf Baechle's avatar Ralf Baechle

[MIPS] 32-bit: Fix warning about cast for fetching pointer from userspace.

Signed-off-by: default avatarRalf Baechle <ralf@linux-mips.org>
parent d01f06ef
...@@ -265,7 +265,10 @@ do { \ ...@@ -265,7 +265,10 @@ do { \
*/ */
#define __get_user_asm_ll32(val, addr) \ #define __get_user_asm_ll32(val, addr) \
{ \ { \
unsigned long long __gu_tmp; \ union { \
unsigned long long l; \
__typeof__(*(addr)) t; \
} __gu_tmp; \
\ \
__asm__ __volatile__( \ __asm__ __volatile__( \
"1: lw %1, (%3) \n" \ "1: lw %1, (%3) \n" \
...@@ -281,9 +284,10 @@ do { \ ...@@ -281,9 +284,10 @@ do { \
" " __UA_ADDR " 1b, 4b \n" \ " " __UA_ADDR " 1b, 4b \n" \
" " __UA_ADDR " 2b, 4b \n" \ " " __UA_ADDR " 2b, 4b \n" \
" .previous \n" \ " .previous \n" \
: "=r" (__gu_err), "=&r" (__gu_tmp) \ : "=r" (__gu_err), "=&r" (__gu_tmp.l) \
: "0" (0), "r" (addr), "i" (-EFAULT)); \ : "0" (0), "r" (addr), "i" (-EFAULT)); \
(val) = (__typeof__(*(addr))) __gu_tmp; \ \
(val) = __gu_tmp.t; \
} }
/* /*
......
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