Grant Likely | 6b884a8 | 2010-06-08 07:48:09 -0600 | [diff] [blame] | 1 | #ifndef __OF_ADDRESS_H |
| 2 | #define __OF_ADDRESS_H |
| 3 | #include <linux/ioport.h> |
| 4 | #include <linux/of.h> |
| 5 | |
Grant Likely | dbbdee9 | 2010-06-08 07:48:10 -0600 | [diff] [blame^] | 6 | extern u64 of_translate_address(struct device_node *np, const u32 *addr); |
Grant Likely | 1f5bef3 | 2010-06-08 07:48:09 -0600 | [diff] [blame] | 7 | extern int of_address_to_resource(struct device_node *dev, int index, |
| 8 | struct resource *r); |
Grant Likely | 6b884a8 | 2010-06-08 07:48:09 -0600 | [diff] [blame] | 9 | extern void __iomem *of_iomap(struct device_node *device, int index); |
| 10 | |
| 11 | #endif /* __OF_ADDRESS_H */ |
| 12 | |