diff options
Diffstat (limited to 'arch/mips/mm/c-r4k.c')
-rw-r--r-- | arch/mips/mm/c-r4k.c | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/arch/mips/mm/c-r4k.c b/arch/mips/mm/c-r4k.c index e26dd829bf20..48d731c2f08a 100644 --- a/arch/mips/mm/c-r4k.c +++ b/arch/mips/mm/c-r4k.c | |||
@@ -456,8 +456,8 @@ static void r4k_flush_data_cache_page(unsigned long addr) | |||
456 | } | 456 | } |
457 | 457 | ||
458 | struct flush_icache_range_args { | 458 | struct flush_icache_range_args { |
459 | unsigned long start; | 459 | unsigned long __user start; |
460 | unsigned long end; | 460 | unsigned long __user end; |
461 | }; | 461 | }; |
462 | 462 | ||
463 | static inline void local_r4k_flush_icache_range(void *args) | 463 | static inline void local_r4k_flush_icache_range(void *args) |
@@ -519,7 +519,8 @@ static inline void local_r4k_flush_icache_range(void *args) | |||
519 | } | 519 | } |
520 | } | 520 | } |
521 | 521 | ||
522 | static void r4k_flush_icache_range(unsigned long start, unsigned long end) | 522 | static void r4k_flush_icache_range(unsigned long __user start, |
523 | unsigned long __user end) | ||
523 | { | 524 | { |
524 | struct flush_icache_range_args args; | 525 | struct flush_icache_range_args args; |
525 | 526 | ||