diff options
author | Russell King <rmk@dyn-67.arm.linux.org.uk> | 2006-09-27 15:27:33 +0100 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2006-09-27 15:27:33 +0100 |
commit | d111e8f9644aa585c1a7e198d74a4d2682ef1374 (patch) | |
tree | 4f29f58d0bbcd224790a3eae00668ce4d8a7483a /arch/arm/mm/Makefile | |
parent | 456335e2072fb35bf290b45e61d51916c322c145 (diff) | |
download | op-kernel-dev-d111e8f9644aa585c1a7e198d74a4d2682ef1374.zip op-kernel-dev-d111e8f9644aa585c1a7e198d74a4d2682ef1374.tar.gz |
[ARM] Split ARM MM initialisation for !mmu
Move the MMU specific code from init.c into mmu.c, and add nommu
fixups to nommu.c
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm/mm/Makefile')
-rw-r--r-- | arch/arm/mm/Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/arm/mm/Makefile b/arch/arm/mm/Makefile index 1a1563f..cabaa3b 100644 --- a/arch/arm/mm/Makefile +++ b/arch/arm/mm/Makefile @@ -6,7 +6,7 @@ obj-y := consistent.o extable.o fault.o init.o \ iomap.o obj-$(CONFIG_MMU) += fault-armv.o flush.o ioremap.o mmap.o \ - mm-armv.o + mm-armv.o mmu.o ifneq ($(CONFIG_MMU),y) obj-y += nommu.o |