On Sat, 24 Mar 2007 16:27:21 +0000, Ralf Baechle <ralf@xxxxxxxxxxxxxx> wrote: > Sometimes sparse is a PITA ... Applied. Thanks. And one more. Fix kunmap_coherent() usage. Or is it a time to kill the unused argument of kunmap_coherent()? Signed-off-by: Atsushi Nemoto <anemo@xxxxxxxxxxxxx> --- diff --git a/arch/mips/mm/cache.c b/arch/mips/mm/cache.c index 4e8f1b6..70ccc5d 100644 --- a/arch/mips/mm/cache.c +++ b/arch/mips/mm/cache.c @@ -96,7 +96,7 @@ void __flush_anon_page(struct page *page kaddr = kmap_coherent(page, vmaddr); flush_data_cache_page((unsigned long)kaddr); - kunmap_coherent(kaddr); + kunmap_coherent(page); } }