diff options
Diffstat (limited to 'arch')
-rw-r--r-- | arch/ppc/mm/init.c | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/arch/ppc/mm/init.c b/arch/ppc/mm/init.c index 33ada72c7330..32ee49710267 100644 --- a/arch/ppc/mm/init.c +++ b/arch/ppc/mm/init.c | |||
@@ -560,8 +560,9 @@ void flush_dcache_page(struct page *page) | |||
560 | void flush_dcache_icache_page(struct page *page) | 560 | void flush_dcache_icache_page(struct page *page) |
561 | { | 561 | { |
562 | #ifdef CONFIG_BOOKE | 562 | #ifdef CONFIG_BOOKE |
563 | __flush_dcache_icache(kmap(page)); | 563 | void *start = kmap_atomic(page, KM_PPC_SYNC_ICACHE); |
564 | kunmap(page); | 564 | __flush_dcache_icache(start); |
565 | kunmap_atomic(start, KM_PPC_SYNC_ICACHE); | ||
565 | #elif CONFIG_8xx | 566 | #elif CONFIG_8xx |
566 | /* On 8xx there is no need to kmap since highmem is not supported */ | 567 | /* On 8xx there is no need to kmap since highmem is not supported */ |
567 | __flush_dcache_icache(page_address(page)); | 568 | __flush_dcache_icache(page_address(page)); |