diff options
Diffstat (limited to 'arch/frv')
-rw-r--r-- | arch/frv/include/asm/pgtable.h | 3 | ||||
-rw-r--r-- | arch/frv/include/asm/uaccess.h | 4 |
2 files changed, 2 insertions, 5 deletions
diff --git a/arch/frv/include/asm/pgtable.h b/arch/frv/include/asm/pgtable.h index 6bc241e4b4f8..eb0110acd19b 100644 --- a/arch/frv/include/asm/pgtable.h +++ b/arch/frv/include/asm/pgtable.h | |||
@@ -488,9 +488,6 @@ static inline int pte_file(pte_t pte) | |||
488 | #define PageSkip(page) (0) | 488 | #define PageSkip(page) (0) |
489 | #define kern_addr_valid(addr) (1) | 489 | #define kern_addr_valid(addr) (1) |
490 | 490 | ||
491 | #define io_remap_pfn_range(vma, vaddr, pfn, size, prot) \ | ||
492 | remap_pfn_range(vma, vaddr, pfn, size, prot) | ||
493 | |||
494 | #define __HAVE_ARCH_PTEP_TEST_AND_CLEAR_YOUNG | 491 | #define __HAVE_ARCH_PTEP_TEST_AND_CLEAR_YOUNG |
495 | #define __HAVE_ARCH_PTEP_GET_AND_CLEAR | 492 | #define __HAVE_ARCH_PTEP_GET_AND_CLEAR |
496 | #define __HAVE_ARCH_PTEP_SET_WRPROTECT | 493 | #define __HAVE_ARCH_PTEP_SET_WRPROTECT |
diff --git a/arch/frv/include/asm/uaccess.h b/arch/frv/include/asm/uaccess.h index 0b67ec5b4414..3ac9a59d65d4 100644 --- a/arch/frv/include/asm/uaccess.h +++ b/arch/frv/include/asm/uaccess.h | |||
@@ -280,14 +280,14 @@ extern long __memcpy_user(void *dst, const void *src, unsigned long count); | |||
280 | static inline unsigned long __must_check | 280 | static inline unsigned long __must_check |
281 | __copy_to_user(void __user *to, const void *from, unsigned long n) | 281 | __copy_to_user(void __user *to, const void *from, unsigned long n) |
282 | { | 282 | { |
283 | might_sleep(); | 283 | might_fault(); |
284 | return __copy_to_user_inatomic(to, from, n); | 284 | return __copy_to_user_inatomic(to, from, n); |
285 | } | 285 | } |
286 | 286 | ||
287 | static inline unsigned long | 287 | static inline unsigned long |
288 | __copy_from_user(void *to, const void __user *from, unsigned long n) | 288 | __copy_from_user(void *to, const void __user *from, unsigned long n) |
289 | { | 289 | { |
290 | might_sleep(); | 290 | might_fault(); |
291 | return __copy_from_user_inatomic(to, from, n); | 291 | return __copy_from_user_inatomic(to, from, n); |
292 | } | 292 | } |
293 | 293 | ||