diff options
author | Roman Zippel <zippel@linux-m68k.org> | 2005-09-03 18:57:09 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@evo.osdl.org> | 2005-09-05 03:06:19 -0400 |
commit | 2855b97020f6d4a4dfb005fb77c0b79c8cb9d13f (patch) | |
tree | 6746ded865a27cb23f1646ea2b9e10f76c9d9601 /arch/m68k/mm/Makefile | |
parent | 69f447cffb911bb2d9737fa905f6d983ec2aa5d3 (diff) |
[PATCH] m68k: move cache functions into separate file
Move a few cache functions into its own file and fix flush_icache_range() so
it can handle both kernel and user addresses correctly (assuming context is
set correctly).
Turn copy_to_user_page/copy_from_user_page into inline functions and add a
missing cache flush.
Signed-off-by: Roman Zippel <zippel@linux-m68k.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/m68k/mm/Makefile')
-rw-r--r-- | arch/m68k/mm/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/m68k/mm/Makefile b/arch/m68k/mm/Makefile index 90f1c735c110..5eaa43c4cb3c 100644 --- a/arch/m68k/mm/Makefile +++ b/arch/m68k/mm/Makefile | |||
@@ -2,7 +2,7 @@ | |||
2 | # Makefile for the linux m68k-specific parts of the memory manager. | 2 | # Makefile for the linux m68k-specific parts of the memory manager. |
3 | # | 3 | # |
4 | 4 | ||
5 | obj-y := init.o fault.o hwtest.o | 5 | obj-y := cache.o init.o fault.o hwtest.o |
6 | 6 | ||
7 | obj-$(CONFIG_MMU_MOTOROLA) += kmap.o memory.o motorola.o | 7 | obj-$(CONFIG_MMU_MOTOROLA) += kmap.o memory.o motorola.o |
8 | obj-$(CONFIG_MMU_SUN3) += sun3kmap.o sun3mmu.o | 8 | obj-$(CONFIG_MMU_SUN3) += sun3kmap.o sun3mmu.o |