Skip to content

Commit

Permalink
---
Browse files Browse the repository at this point in the history
yaml
---
r: 31029
b: refs/heads/master
c: e6b1b38
h: refs/heads/master
i:
  31027: 30f0915
v: v3
  • Loading branch information
Russell King authored and Russell King committed Jun 28, 2006
1 parent f1892bb commit 66b0d2c
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 3 deletions.
2 changes: 1 addition & 1 deletion [refs]
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
---
refs/heads/master: 3b93e7b08fc3e87e5b451ee5e47cfe142779d0cd
refs/heads/master: e6b1b38c520d85388ab6538001265cc342e81a70
4 changes: 2 additions & 2 deletions trunk/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 trunk/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 66b0d2c

Please sign in to comment.