Skip to content

Commit

Permalink
Revert "[MIPS] Fix warning in get_user when fetching pointer object f…
Browse files Browse the repository at this point in the history
…rom userspace."

This reverts commit 4ed3a77.
  • Loading branch information
Ralf Baechle committed Feb 13, 2007
1 parent 84b47a9 commit cd1fb9e
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion include/asm-mips/uaccess.h
Original file line number Diff line number Diff line change
Expand Up @@ -265,6 +265,8 @@ do { \
*/
#define __get_user_asm_ll32(val, addr) \
{ \
unsigned long long __gu_tmp; \
\
__asm__ __volatile__( \
"1: lw %1, (%3) \n" \
"2: lw %D1, 4(%3) \n" \
Expand All @@ -279,8 +281,9 @@ do { \
" " __UA_ADDR " 1b, 4b \n" \
" " __UA_ADDR " 2b, 4b \n" \
" .previous \n" \
: "=r" (__gu_err), "=&r" (val) \
: "=r" (__gu_err), "=&r" (__gu_tmp) \
: "0" (0), "r" (addr), "i" (-EFAULT)); \
(val) = (__typeof__(*(addr))) __gu_tmp; \
}

/*
Expand Down

0 comments on commit cd1fb9e

Please sign in to comment.