1 #ifndef _ASM_SPARC_OF_DEVICE_H
2 #define _ASM_SPARC_OF_DEVICE_H
5 #include <linux/device.h>
7 #include <linux/mod_devicetable.h>
8 #include <asm/openprom.h>
11 * The of_device is a kind of "base class" that is a superset of
12 * struct device for use by devices attached to an OF node and
13 * probed using OF properties.
17 struct device_node *node;
19 struct resource resource[PROMREG_MAX];
20 unsigned int irqs[PROMINTR_MAX];
30 extern void __iomem *of_ioremap(struct resource *res, unsigned long offset, unsigned long size, char *name);
31 extern void of_iounmap(struct resource *res, void __iomem *base, unsigned long size);
33 /* These are just here during the transition */
34 #include <linux/of_device.h>
35 #include <linux/of_platform.h>
37 #endif /* __KERNEL__ */
38 #endif /* _ASM_SPARC_OF_DEVICE_H */