diff options
author | Cong Wang <amwang@redhat.com> | 2011-11-25 16:14:16 +0100 |
---|---|---|
committer | Cong Wang <xiyou.wangcong@gmail.com> | 2012-03-20 14:48:14 +0100 |
commit | 2480b2089210de3353b43419a80d9fa298d76f0e (patch) | |
tree | 95d79e9af0a7a038e42acaa9d5dd0ade735ba78f /arch/powerpc/mm/mem.c | |
parent | mips: remove the second argument of k[un]map_atomic() (diff) | |
download | linux-2480b2089210de3353b43419a80d9fa298d76f0e.tar.xz linux-2480b2089210de3353b43419a80d9fa298d76f0e.zip |
powerpc: remove the second argument of k[un]map_atomic()
Signed-off-by: Cong Wang <amwang@redhat.com>
Diffstat (limited to '')
-rw-r--r-- | arch/powerpc/mm/mem.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/powerpc/mm/mem.c b/arch/powerpc/mm/mem.c index d974b79a3068..baaafde7d135 100644 --- a/arch/powerpc/mm/mem.c +++ b/arch/powerpc/mm/mem.c @@ -458,9 +458,9 @@ void flush_dcache_icache_page(struct page *page) #endif #ifdef CONFIG_BOOKE { - void *start = kmap_atomic(page, KM_PPC_SYNC_ICACHE); + void *start = kmap_atomic(page); __flush_dcache_icache(start); - kunmap_atomic(start, KM_PPC_SYNC_ICACHE); + kunmap_atomic(start); } #elif defined(CONFIG_8xx) || defined(CONFIG_PPC64) /* On 8xx there is no need to kmap since highmem is not supported */ |