Merge remote-tracking branch 'spi/topic/dma' into spi-next
[deliverable/linux.git] / arch / x86 / include / asm / uaccess.h
index c3f2911952948244c859b3822c5a804e85d73cf8..e3af86f58eafdbeb1dc92008d74033e9aedeba13 100644 (file)
@@ -705,7 +705,7 @@ static inline void copy_user_overflow(int size, unsigned long count)
        WARN(1, "Buffer overflow detected (%d < %lu)!\n", size, count);
 }
 
-static inline unsigned long __must_check
+static __always_inline unsigned long __must_check
 copy_from_user(void *to, const void __user *from, unsigned long n)
 {
        int sz = __compiletime_object_size(to);
@@ -725,7 +725,7 @@ copy_from_user(void *to, const void __user *from, unsigned long n)
        return n;
 }
 
-static inline unsigned long __must_check
+static __always_inline unsigned long __must_check
 copy_to_user(void __user *to, const void *from, unsigned long n)
 {
        int sz = __compiletime_object_size(from);
This page took 0.027072 seconds and 5 git commands to generate.