diff options
author | Ralf Baechle <ralf@linux-mips.org> | 2007-04-26 10:46:25 -0400 |
---|---|---|
committer | Ralf Baechle <ralf@linux-mips.org> | 2007-04-27 11:20:24 -0400 |
commit | eacb9d61919db56482dcea7ec943c9508175dc16 (patch) | |
tree | 37bb55ace9b1f9e62db9cce6853cf0e58d1b5376 /arch/mips/mm/cache.c | |
parent | e3cf10e93f42171224e88b06c226d450f3b3a55f (diff) |
[MIPS] Remove unused argument from kunmap_coherent().
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
Diffstat (limited to 'arch/mips/mm/cache.c')
-rw-r--r-- | arch/mips/mm/cache.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/mips/mm/cache.c b/arch/mips/mm/cache.c index 4e8f1b683376..abf99b1eba13 100644 --- a/arch/mips/mm/cache.c +++ b/arch/mips/mm/cache.c | |||
@@ -96,7 +96,7 @@ void __flush_anon_page(struct page *page, unsigned long vmaddr) | |||
96 | 96 | ||
97 | kaddr = kmap_coherent(page, vmaddr); | 97 | kaddr = kmap_coherent(page, vmaddr); |
98 | flush_data_cache_page((unsigned long)kaddr); | 98 | flush_data_cache_page((unsigned long)kaddr); |
99 | kunmap_coherent(kaddr); | 99 | kunmap_coherent(); |
100 | } | 100 | } |
101 | } | 101 | } |
102 | 102 | ||