Sparseify MIPS.

Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
This commit is contained in:
Ralf Baechle
2005-03-01 19:22:29 +00:00
parent 14f18b7f7e
commit fe00f943e0
21 changed files with 622 additions and 600 deletions

View File

@ -456,8 +456,8 @@ static void r4k_flush_data_cache_page(unsigned long addr)
}
struct flush_icache_range_args {
unsigned long start;
unsigned long end;
unsigned long __user start;
unsigned long __user end;
};
static inline void local_r4k_flush_icache_range(void *args)
@ -519,7 +519,8 @@ static inline void local_r4k_flush_icache_range(void *args)
}
}
static void r4k_flush_icache_range(unsigned long start, unsigned long end)
static void r4k_flush_icache_range(unsigned long __user start,
unsigned long __user end)
{
struct flush_icache_range_args args;