diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2005-03-01 14:22:29 -0500 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2005-10-29 14:30:50 -0400 |
commit | fe00f943e0ef98b4057abcc2940d631a975b43cd (patch) | |
tree | c036ab8269ac86485130a083330229a01d319557 /arch/mips/mm/c-r4k.c | |
parent | 14f18b7f7e58de9a34c4b5fd38d5f73f22fba7ac (diff) |
Sparseify MIPS.
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
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 | ||