diff options
author | Christian Krafft <krafft@de.ibm.com> | 2007-04-24 11:32:02 -0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2007-05-02 06:04:29 -0400 |
commit | c3e8011ad1bf4791a9c6d70ac1b377df93a9f5af (patch) | |
tree | e18620d2c9cf27628a217c7cbf234324ea5bb40f | |
parent | ed16669298b26266fc0c81bcd4ecc4b4126f77eb (diff) |
[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>
-rw-r--r-- | arch/powerpc/kernel/prom_parse.c | 11 | ||||
-rw-r--r-- | include/asm-powerpc/prom.h | 19 |
2 files changed, 19 insertions, 11 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) | |||
1056 | return irq; | 1056 | return irq; |
1057 | } | 1057 | } |
1058 | EXPORT_SYMBOL_GPL(of_irq_to_resource); | 1058 | EXPORT_SYMBOL_GPL(of_irq_to_resource); |
1059 | |||
1060 | void __iomem *of_iomap(struct device_node *np, int index) | ||
1061 | { | ||
1062 | struct resource res; | ||
1063 | |||
1064 | if (of_address_to_resource(np, index, &res)) | ||
1065 | return NULL; | ||
1066 | |||
1067 | return ioremap(res.start, 1 + res.end - res.start); | ||
1068 | } | ||
1069 | EXPORT_SYMBOL(of_iomap); | ||
diff --git a/include/asm-powerpc/prom.h b/include/asm-powerpc/prom.h index 1375f8c91612..6845af93ba91 100644 --- a/include/asm-powerpc/prom.h +++ b/include/asm-powerpc/prom.h | |||
@@ -20,7 +20,6 @@ | |||
20 | #include <linux/platform_device.h> | 20 | #include <linux/platform_device.h> |
21 | #include <asm/irq.h> | 21 | #include <asm/irq.h> |
22 | #include <asm/atomic.h> | 22 | #include <asm/atomic.h> |
23 | #include <asm/io.h> | ||
24 | 23 | ||
25 | /* Definitions used by the flattened device tree */ | 24 | /* Definitions used by the flattened device tree */ |
26 | #define OF_DT_HEADER 0xd00dfeed /* marker */ | 25 | #define OF_DT_HEADER 0xd00dfeed /* marker */ |
@@ -337,16 +336,14 @@ extern int of_irq_map_pci(struct pci_dev *pdev, struct of_irq *out_irq); | |||
337 | extern int of_irq_to_resource(struct device_node *dev, int index, | 336 | extern int of_irq_to_resource(struct device_node *dev, int index, |
338 | struct resource *r); | 337 | struct resource *r); |
339 | 338 | ||
340 | static inline void __iomem *of_iomap(struct device_node *np, int index) | 339 | /** |
341 | { | 340 | * of_iomap - Maps the memory mapped IO for a given device_node |
342 | struct resource res; | 341 | * @device: the device whose io range will be mapped |
343 | 342 | * @index: index of the io range | |
344 | if (of_address_to_resource(np, index, &res)) | 343 | * |
345 | return NULL; | 344 | * Returns a pointer to the mapped memory |
346 | 345 | */ | |
347 | return ioremap(res.start, 1 + res.end - res.start); | 346 | extern void __iomem *of_iomap(struct device_node *device, int index); |
348 | } | ||
349 | |||
350 | 347 | ||
351 | #endif /* __KERNEL__ */ | 348 | #endif /* __KERNEL__ */ |
352 | #endif /* _POWERPC_PROM_H */ | 349 | #endif /* _POWERPC_PROM_H */ |