diff options
author | Paul Mundt <lethal@linux-sh.org> | 2012-05-14 06:33:28 (GMT) |
---|---|---|
committer | Paul Mundt <lethal@linux-sh.org> | 2012-05-14 06:33:28 (GMT) |
commit | 28080329ede3e4110bb14306b4529a5b9a2ce163 (patch) | |
tree | 6c4d953750eb8aa99077cb0315af060b4dcffc33 /arch/sh/mm/Makefile | |
parent | e45af0e083dfc5d49dbad6965b9eeb3ac0072d82 (diff) | |
download | linux-28080329ede3e4110bb14306b4529a5b9a2ce163.tar.xz |
sh: Enable shared page fault handler for _32/_64.
This moves the now generic _32 page fault handling code to a shared place
and adapts the _64 implementation to make use of it.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
Diffstat (limited to 'arch/sh/mm/Makefile')
-rw-r--r-- | arch/sh/mm/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/sh/mm/Makefile b/arch/sh/mm/Makefile index 2228c8c..ba81910 100644 --- a/arch/sh/mm/Makefile +++ b/arch/sh/mm/Makefile @@ -15,8 +15,8 @@ cacheops-$(CONFIG_CPU_SHX3) += cache-shx3.o obj-y += $(cacheops-y) mmu-y := nommu.o extable_32.o -mmu-$(CONFIG_MMU) := extable_$(BITS).o fault_$(BITS).o gup.o \ - ioremap.o kmap.o pgtable.o tlbflush_$(BITS).o +mmu-$(CONFIG_MMU) := extable_$(BITS).o fault.o gup.o ioremap.o kmap.o \ + pgtable.o tlbex_$(BITS).o tlbflush_$(BITS).o obj-y += $(mmu-y) |