Commit 2b726f26 authored by David S. Miller's avatar David S. Miller

[sparc]: Fix typo in uaccess.h

parent a0e3315d
...@@ -343,7 +343,7 @@ static inline unsigned long __clear_user(void __user *addr, unsigned long size) ...@@ -343,7 +343,7 @@ static inline unsigned long __clear_user(void __user *addr, unsigned long size)
static inline unsigned long clear_user(void __user *addr, unsigned long n) static inline unsigned long clear_user(void __user *addr, unsigned long n)
{ {
if (n && __access_ok((unsigned long) addr, n)) { if (n && __access_ok((unsigned long) addr, n))
return __clear_user(addr, n); return __clear_user(addr, n);
else else
return n; return n;
......
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