diff options
author | Russell King <rmk@dyn-67.arm.linux.org.uk> | 2006-09-27 10:40:28 -0400 |
---|---|---|
committer | Russell King <rmk+kernel@arm.linux.org.uk> | 2006-09-27 10:40:28 -0400 |
commit | 0c668984ddff94f800b37f244d7b21074b04b971 (patch) | |
tree | ea5986742ada97cc21b0341daf2b6cf34c14c60a /arch/arm | |
parent | ae8f154129e4d965771c2d6adbe36210b3913d72 (diff) |
[ARM] Rename mm-armv.c to pgd.c
mm-armv.c now only contains the pgd allocation/freeing code, so
rename it to have a more sensible filename.
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
Diffstat (limited to 'arch/arm')
-rw-r--r-- | arch/arm/mm/Makefile | 2 | ||||
-rw-r--r-- | arch/arm/mm/pgd.c (renamed from arch/arm/mm/mm-armv.c) | 4 |
2 files changed, 2 insertions, 4 deletions
diff --git a/arch/arm/mm/Makefile b/arch/arm/mm/Makefile index cabaa3b30548..2d0ab19db496 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 \ | |||
6 | iomap.o | 6 | iomap.o |
7 | 7 | ||
8 | obj-$(CONFIG_MMU) += fault-armv.o flush.o ioremap.o mmap.o \ | 8 | obj-$(CONFIG_MMU) += fault-armv.o flush.o ioremap.o mmap.o \ |
9 | mm-armv.o mmu.o | 9 | pgd.o mmu.o |
10 | 10 | ||
11 | ifneq ($(CONFIG_MMU),y) | 11 | ifneq ($(CONFIG_MMU),y) |
12 | obj-y += nommu.o | 12 | obj-y += nommu.o |
diff --git a/arch/arm/mm/mm-armv.c b/arch/arm/mm/pgd.c index a35d5f2ee4e0..20c1b0df75f2 100644 --- a/arch/arm/mm/mm-armv.c +++ b/arch/arm/mm/pgd.c | |||
@@ -1,13 +1,11 @@ | |||
1 | /* | 1 | /* |
2 | * linux/arch/arm/mm/mm-armv.c | 2 | * linux/arch/arm/mm/pgd.c |
3 | * | 3 | * |
4 | * Copyright (C) 1998-2005 Russell King | 4 | * Copyright (C) 1998-2005 Russell King |
5 | * | 5 | * |
6 | * This program is free software; you can redistribute it and/or modify | 6 | * This program is free software; you can redistribute it and/or modify |
7 | * it under the terms of the GNU General Public License version 2 as | 7 | * it under the terms of the GNU General Public License version 2 as |
8 | * published by the Free Software Foundation. | 8 | * published by the Free Software Foundation. |
9 | * | ||
10 | * Page table sludge for ARM v3 and v4 processor architectures. | ||
11 | */ | 9 | */ |
12 | #include <linux/mm.h> | 10 | #include <linux/mm.h> |
13 | #include <linux/highmem.h> | 11 | #include <linux/highmem.h> |