* [PATCH] nommu: add ioremap_page_range().
@ 2007-05-14 8:18 Paul Mundt
0 siblings, 0 replies; only message in thread
From: Paul Mundt @ 2007-05-14 8:18 UTC (permalink / raw)
To: Andrew Morton, linux-kernel
lib/ioremap.c is presently only built in if CONFIG_MMU is set. While
this is reasonable, platforms that support both CONFIG_MMU=y or n
need to be able to call in to this regardless.
As none of the current nommu platforms do anything special with
ioremap(), we assume that it's always successful.
This fixes the SH-4 build with CONFIG_MMU=n.
Signed-off-by: Paul Mundt <lethal@linux-sh.org>
--
include/linux/io.h | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/include/linux/io.h b/include/linux/io.h
index 09d3512..8423dd3 100644
--- a/include/linux/io.h
+++ b/include/linux/io.h
@@ -27,8 +27,16 @@ struct device;
void __iowrite32_copy(void __iomem *to, const void *from, size_t count);
void __iowrite64_copy(void __iomem *to, const void *from, size_t count);
+#ifdef CONFIG_MMU
int ioremap_page_range(unsigned long addr, unsigned long end,
unsigned long phys_addr, pgprot_t prot);
+#else
+static inline int ioremap_page_range(unsigned long addr, unsigned long end,
+ unsigned long phys_addr, pgprot_t prot)
+{
+ return 0;
+}
+#endif
/*
* Managed iomap interface
^ permalink raw reply related [flat|nested] only message in thread
only message in thread, other threads:[~2007-05-14 8:19 UTC | newest]
Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-05-14 8:18 [PATCH] nommu: add ioremap_page_range() Paul Mundt
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.