Skip to content

Commit

Permalink
[ARM] nommu: Provide a simple flush_dcache_page implementation
Browse files Browse the repository at this point in the history
nommu doesn't require a complex flush_dcache_page implementation
like the MMU-ful CPUs do, so provide a simplified version in nommu.c
and omit flush.c from the build as appropriate.

Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
  • Loading branch information
Russell King authored and Russell King committed Jun 28, 2006
1 parent 3b93e7b commit e6b1b38
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 2 deletions.
4 changes: 2 additions & 2 deletions arch/arm/mm/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
#

obj-y := consistent.o extable.o fault-armv.o \
fault.o flush.o init.o iomap.o mmap.o \
fault.o init.o iomap.o mmap.o \
mm-armv.o

obj-$(CONFIG_MMU) += ioremap.o
obj-$(CONFIG_MMU) += flush.o ioremap.o

ifneq ($(CONFIG_MMU),y)
obj-y += nommu.o
Expand Down
8 changes: 8 additions & 0 deletions arch/arm/mm/nommu.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,18 @@
* ARM uCLinux supporting functions.
*/
#include <linux/module.h>
#include <linux/mm.h>
#include <linux/pagemap.h>

#include <asm/cacheflush.h>
#include <asm/io.h>
#include <asm/page.h>

void flush_dcache_page(struct page *page)
{
__cpuc_flush_dcache_page(page_address(page));
}

void __iomem *__ioremap_pfn(unsigned long pfn, unsigned long offset,
size_t size, unsigned long flags)
{
Expand Down

0 comments on commit e6b1b38

Please sign in to comment.