]> bbs.cooldavid.org Git - net-next-2.6.git/blobdiff - arch/tile/include/asm/uaccess.h
arch/tile: Various cleanups.
[net-next-2.6.git] / arch / tile / include / asm / uaccess.h
index ed17a80ec0edf88e22a83756abf8ec8faa1ad1d2..ef34d2caa5b1b6205775da2dfe352274569a0e73 100644 (file)
@@ -389,14 +389,14 @@ static inline unsigned long __must_check copy_from_user(void *to,
  * Returns number of bytes that could not be copied.
  * On success, this will be zero.
  */
-extern unsigned long __copy_in_user_asm(
+extern unsigned long __copy_in_user_inatomic(
        void __user *to, const void __user *from, unsigned long n);
 
 static inline unsigned long __must_check
 __copy_in_user(void __user *to, const void __user *from, unsigned long n)
 {
        might_sleep();
-       return __copy_in_user_asm(to, from, n);
+       return __copy_in_user_inatomic(to, from, n);
 }
 
 static inline unsigned long __must_check