diff options
-rw-r--r-- | arch/arm/mm/Makefile | 4 | ||||
-rw-r--r-- | arch/arm/mm/nommu.c | 8 |
2 files changed, 10 insertions, 2 deletions
diff --git a/arch/arm/mm/Makefile b/arch/arm/mm/Makefile index 07891c83e52c..ddce03878981 100644 --- a/arch/arm/mm/Makefile +++ b/arch/arm/mm/Makefile | |||
@@ -3,10 +3,10 @@ | |||
3 | # | 3 | # |
4 | 4 | ||
5 | obj-y := consistent.o extable.o fault-armv.o \ | 5 | obj-y := consistent.o extable.o fault-armv.o \ |
6 | fault.o flush.o init.o iomap.o mmap.o \ | 6 | fault.o init.o iomap.o mmap.o \ |
7 | mm-armv.o | 7 | mm-armv.o |
8 | 8 | ||
9 | obj-$(CONFIG_MMU) += ioremap.o | 9 | obj-$(CONFIG_MMU) += flush.o ioremap.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/nommu.c b/arch/arm/mm/nommu.c index 934c551d93da..10166fdeaace 100644 --- a/arch/arm/mm/nommu.c +++ b/arch/arm/mm/nommu.c | |||
@@ -4,10 +4,18 @@ | |||
4 | * ARM uCLinux supporting functions. | 4 | * ARM uCLinux supporting functions. |
5 | */ | 5 | */ |
6 | #include <linux/module.h> | 6 | #include <linux/module.h> |
7 | #include <linux/mm.h> | ||
8 | #include <linux/pagemap.h> | ||
7 | 9 | ||
10 | #include <asm/cacheflush.h> | ||
8 | #include <asm/io.h> | 11 | #include <asm/io.h> |
9 | #include <asm/page.h> | 12 | #include <asm/page.h> |
10 | 13 | ||
14 | void flush_dcache_page(struct page *page) | ||
15 | { | ||
16 | __cpuc_flush_dcache_page(page_address(page)); | ||
17 | } | ||
18 | |||
11 | void __iomem *__ioremap_pfn(unsigned long pfn, unsigned long offset, | 19 | void __iomem *__ioremap_pfn(unsigned long pfn, unsigned long offset, |
12 | size_t size, unsigned long flags) | 20 | size_t size, unsigned long flags) |
13 | { | 21 | { |