diff options
author | James Bottomley <jejb@parisc-linux.org> | 2006-03-22 19:42:04 +0300 |
---|---|---|
committer | Kyle McMartin <kyle@hera.kernel.org> | 2006-03-30 21:48:44 +0400 |
commit | ba57583396585a1ca509e2a84d970a2ff3f9bbfb (patch) | |
tree | 29568b37c8f4af9edc86d702a98713b0f016c78a /include/asm-parisc/page.h | |
parent | ab43227c8a568119a3aebc952a95ac3023e1730d (diff) | |
download | linux-ba57583396585a1ca509e2a84d970a2ff3f9bbfb.tar.xz |
[PARISC] Add parisc implementation of flush_kernel_dcache_page()
We need to do a little renaming of our original syntax because
of the difference in arguments.
Signed-off-by: James Bottomley <jejb@parisc-linux.org>
Signed-off-by: Kyle McMartin <kyle@parisc-linux.org>
Diffstat (limited to 'include/asm-parisc/page.h')
-rw-r--r-- | include/asm-parisc/page.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-parisc/page.h b/include/asm-parisc/page.h index 9f303c0c3cd7..c6c9d5793070 100644 --- a/include/asm-parisc/page.h +++ b/include/asm-parisc/page.h @@ -26,7 +26,7 @@ static inline void copy_user_page(void *vto, void *vfrom, unsigned long vaddr, struct page *pg) { copy_user_page_asm(vto, vfrom); - flush_kernel_dcache_page(vto); + flush_kernel_dcache_page_asm(vto); /* XXX: ppc flushes icache too, should we? */ } |