diff options
author | Russell King <rmk@dyn-67.arm.linux.org.uk> | 2006-08-21 14:23:38 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2006-09-20 09:58:35 -0400 |
commit | d84b47115a04d9f6b0da777e8aa8cd930d5b6b8b (patch) | |
tree | 7ec15930b462387c6f740d9acb82c854c5cf7d87 /arch | |
parent | 1b2e2b73b4c84c918686c04a00724197036c0847 (diff) |
[ARM] Move mmu.c out of the way
Rename mmu.c to context.c - it's the ARMv6 ASID context handling
code rather than generic "mmu" handling code.
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/arm/mm/Makefile | 2 | ||||
-rw-r--r-- | arch/arm/mm/context.c (renamed from arch/arm/mm/mmu.c) | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mm/Makefile b/arch/arm/mm/Makefile index 21a2770226ee..1a1563f859af 100644 --- a/arch/arm/mm/Makefile +++ b/arch/arm/mm/Makefile | |||
@@ -33,7 +33,7 @@ obj-$(CONFIG_CPU_CACHE_V6) += cache-v6.o | |||
33 | obj-$(CONFIG_CPU_COPY_V3) += copypage-v3.o | 33 | obj-$(CONFIG_CPU_COPY_V3) += copypage-v3.o |
34 | obj-$(CONFIG_CPU_COPY_V4WT) += copypage-v4wt.o | 34 | obj-$(CONFIG_CPU_COPY_V4WT) += copypage-v4wt.o |
35 | obj-$(CONFIG_CPU_COPY_V4WB) += copypage-v4wb.o | 35 | obj-$(CONFIG_CPU_COPY_V4WB) += copypage-v4wb.o |
36 | obj-$(CONFIG_CPU_COPY_V6) += copypage-v6.o mmu.o | 36 | obj-$(CONFIG_CPU_COPY_V6) += copypage-v6.o context.o |
37 | obj-$(CONFIG_CPU_SA1100) += copypage-v4mc.o | 37 | obj-$(CONFIG_CPU_SA1100) += copypage-v4mc.o |
38 | obj-$(CONFIG_CPU_XSCALE) += copypage-xscale.o | 38 | obj-$(CONFIG_CPU_XSCALE) += copypage-xscale.o |
39 | obj-$(CONFIG_CPU_XSC3) += copypage-xsc3.o | 39 | obj-$(CONFIG_CPU_XSC3) += copypage-xsc3.o |
diff --git a/arch/arm/mm/mmu.c b/arch/arm/mm/context.c index 0d90227a0a32..79e800202424 100644 --- a/arch/arm/mm/mmu.c +++ b/arch/arm/mm/context.c | |||
@@ -1,5 +1,5 @@ | |||
1 | /* | 1 | /* |
2 | * linux/arch/arm/mm/mmu.c | 2 | * linux/arch/arm/mm/context.c |
3 | * | 3 | * |
4 | * Copyright (C) 2002-2003 Deep Blue Solutions Ltd, all rights reserved. | 4 | * Copyright (C) 2002-2003 Deep Blue Solutions Ltd, all rights reserved. |
5 | * | 5 | * |