diff options
Diffstat (limited to 'include/asm-sparc/of_device.h')
-rw-r--r-- | include/asm-sparc/of_device.h | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/include/asm-sparc/of_device.h b/include/asm-sparc/of_device.h index b5ca3145d48b..80ea31f6e17f 100644 --- a/include/asm-sparc/of_device.h +++ b/include/asm-sparc/of_device.h | |||
@@ -21,7 +21,8 @@ struct of_device | |||
21 | struct device_node *node; | 21 | struct device_node *node; |
22 | struct device dev; | 22 | struct device dev; |
23 | struct resource resource[PROMREG_MAX]; | 23 | struct resource resource[PROMREG_MAX]; |
24 | unsigned int irq; | 24 | unsigned int irqs[PROMINTR_MAX]; |
25 | int num_irqs; | ||
25 | 26 | ||
26 | void *sysdata; | 27 | void *sysdata; |
27 | 28 | ||
@@ -34,6 +35,8 @@ struct of_device | |||
34 | extern void __iomem *of_ioremap(struct resource *res, unsigned long offset, unsigned long size, char *name); | 35 | extern void __iomem *of_ioremap(struct resource *res, unsigned long offset, unsigned long size, char *name); |
35 | extern void of_iounmap(void __iomem *base, unsigned long size); | 36 | extern void of_iounmap(void __iomem *base, unsigned long size); |
36 | 37 | ||
38 | extern struct of_device *of_find_device_by_node(struct device_node *); | ||
39 | |||
37 | extern const struct of_device_id *of_match_device( | 40 | extern const struct of_device_id *of_match_device( |
38 | const struct of_device_id *matches, const struct of_device *dev); | 41 | const struct of_device_id *matches, const struct of_device *dev); |
39 | 42 | ||