提交 e6b1b38c 编写于 作者: R Russell King 提交者: Russell King

[ARM] nommu: Provide a simple flush_dcache_page implementation

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: NRussell King <rmk+kernel@arm.linux.org.uk>
上级 3b93e7b0
......@@ -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
......
......@@ -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)
{
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册