diff options
author | Heiko Schocher <heiko.schocher@invitel.hu> | 2007-11-11 04:17:44 (GMT) |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2007-11-19 03:55:51 (GMT) |
commit | 0349337467dc6039dcfb225074944ae944e7b34e (patch) | |
tree | c05defcee2bd680c310291cc97055d90845d2082 | |
parent | 2ffbb8377c7a0713baf6644e285adc27a5654582 (diff) | |
download | linux-fsl-qoriq-0349337467dc6039dcfb225074944ae944e7b34e.tar.xz |
sh: Fix copy_{to,from}_user_page() with cache disabled.
Signed-off-by: Heiko Schocher <heiko.schocher@invitel.hu>
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
-rw-r--r-- | include/asm-sh/cacheflush.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-sh/cacheflush.h b/include/asm-sh/cacheflush.h index b912461..9d528ad 100644 --- a/include/asm-sh/cacheflush.h +++ b/include/asm-sh/cacheflush.h @@ -43,7 +43,7 @@ extern void __flush_purge_region(void *start, int size); extern void __flush_invalidate_region(void *start, int size); #endif -#ifdef CONFIG_CPU_SH4 +#if defined(CONFIG_CPU_SH4) && !defined(CONFIG_CACHE_OFF) extern void copy_to_user_page(struct vm_area_struct *vma, struct page *page, unsigned long vaddr, void *dst, const void *src, unsigned long len); |