aboutsummaryrefslogtreecommitdiffstats
path: root/arch/powerpc/kernel/prom_parse.c
diff options
context:
space:
mode:
authorChristian Krafft <krafft@de.ibm.com>2007-04-25 01:32:02 +1000
committerPaul Mackerras <paulus@samba.org>2007-05-02 20:04:29 +1000
commitc3e8011ad1bf4791a9c6d70ac1b377df93a9f5af (patch)
treee18620d2c9cf27628a217c7cbf234324ea5bb40f /arch/powerpc/kernel/prom_parse.c
parent[POWERPC] Initialise spinlock in the DEBUG_PAGEALLOC code (diff)
downloadlinux-dev-c3e8011ad1bf4791a9c6d70ac1b377df93a9f5af.tar.xz
linux-dev-c3e8011ad1bf4791a9c6d70ac1b377df93a9f5af.zip
[POWERPC] Uninline of_iomap function
There is no big reason to have that function inlined. Signed-off-by: Christian Krafft <krafft@de.ibm.com> Acked-by: Arnd Bergmann <arnd.bergmann@de.ibm.com> Acked-by: Benjamin Herrenschmidt <benh@kernel.crashing.org> Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/kernel/prom_parse.c')
-rw-r--r--arch/powerpc/kernel/prom_parse.c11
1 files changed, 11 insertions, 0 deletions
diff --git a/arch/powerpc/kernel/prom_parse.c b/arch/powerpc/kernel/prom_parse.c
index 78ee8d5b07ce..b5c96af955c6 100644
--- a/arch/powerpc/kernel/prom_parse.c
+++ b/arch/powerpc/kernel/prom_parse.c
@@ -1056,3 +1056,14 @@ int of_irq_to_resource(struct device_node *dev, int index, struct resource *r)
return irq;
}
EXPORT_SYMBOL_GPL(of_irq_to_resource);
+
+void __iomem *of_iomap(struct device_node *np, int index)
+{
+ struct resource res;
+
+ if (of_address_to_resource(np, index, &res))
+ return NULL;
+
+ return ioremap(res.start, 1 + res.end - res.start);
+}
+EXPORT_SYMBOL(of_iomap);