diff options
Diffstat (limited to 'arch/sh/mm/Makefile_32')
-rw-r--r-- | arch/sh/mm/Makefile_32 | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/arch/sh/mm/Makefile_32 b/arch/sh/mm/Makefile_32 index e295db60b91..70e0906023c 100644 --- a/arch/sh/mm/Makefile_32 +++ b/arch/sh/mm/Makefile_32 | |||
@@ -5,12 +5,15 @@ | |||
5 | obj-y := init.o extable_32.o consistent.o | 5 | obj-y := init.o extable_32.o consistent.o |
6 | 6 | ||
7 | ifndef CONFIG_CACHE_OFF | 7 | ifndef CONFIG_CACHE_OFF |
8 | obj-$(CONFIG_CPU_SH2) += cache-sh2.o | 8 | cache-$(CONFIG_CPU_SH2) := cache-sh2.o |
9 | obj-$(CONFIG_CPU_SH3) += cache-sh3.o | 9 | cache-$(CONFIG_CPU_SH2A) := cache-sh2a.o |
10 | obj-$(CONFIG_CPU_SH4) += cache-sh4.o | 10 | cache-$(CONFIG_CPU_SH3) := cache-sh3.o |
11 | obj-$(CONFIG_SH7705_CACHE_32KB) += cache-sh7705.o | 11 | cache-$(CONFIG_CPU_SH4) := cache-sh4.o |
12 | cache-$(CONFIG_SH7705_CACHE_32KB) += cache-sh7705.o | ||
12 | endif | 13 | endif |
13 | 14 | ||
15 | obj-y += $(cache-y) | ||
16 | |||
14 | mmu-y := tlb-nommu.o pg-nommu.o | 17 | mmu-y := tlb-nommu.o pg-nommu.o |
15 | mmu-$(CONFIG_MMU) := fault_32.o tlbflush_32.o ioremap_32.o | 18 | mmu-$(CONFIG_MMU) := fault_32.o tlbflush_32.o ioremap_32.o |
16 | 19 | ||