Gitweb:     
http://git.kernel.org/git/?p=linux/kernel/git/torvalds/linux-2.6.git;a=commit;h=218f0aaee8a6b0e5772b95b154dea5b7701b33aa
Commit:     218f0aaee8a6b0e5772b95b154dea5b7701b33aa
Parent:     f0ee9aabb0520adea5937855a9575c08a97b16e7
Author:     Paul Mundt <[EMAIL PROTECTED]>
AuthorDate: Tue May 15 01:41:02 2007 -0700
Committer:  Linus Torvalds <[EMAIL PROTECTED]>
CommitDate: Tue May 15 08:54:00 2007 -0700

    nommu: add ioremap_page_range()
    
    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 <[EMAIL PROTECTED]>
    Cc: David Howells <[EMAIL PROTECTED]>
    Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
    Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]>
---
 include/linux/io.h |    8 ++++++++
 1 files changed, 8 insertions(+), 0 deletions(-)

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
-
To unsubscribe from this list: send the line "unsubscribe git-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at  http://vger.kernel.org/majordomo-info.html

Reply via email to