diff options
| -rw-r--r-- | arch/openrisc/include/asm/prom.h | 10 | ||||
| -rw-r--r-- | arch/sparc/include/asm/prom.h | 10 | ||||
| -rw-r--r-- | include/linux/irqdomain.h | 5 | ||||
| -rw-r--r-- | include/linux/of_irq.h | 4 |
4 files changed, 7 insertions, 22 deletions
diff --git a/arch/openrisc/include/asm/prom.h b/arch/openrisc/include/asm/prom.h index e1f3fe26606c..bbb34e5343a2 100644 --- a/arch/openrisc/include/asm/prom.h +++ b/arch/openrisc/include/asm/prom.h | |||
| @@ -24,6 +24,7 @@ | |||
| 24 | 24 | ||
| 25 | #include <linux/types.h> | 25 | #include <linux/types.h> |
| 26 | #include <asm/irq.h> | 26 | #include <asm/irq.h> |
| 27 | #include <linux/irqdomain.h> | ||
| 27 | #include <linux/atomic.h> | 28 | #include <linux/atomic.h> |
| 28 | #include <linux/of_irq.h> | 29 | #include <linux/of_irq.h> |
| 29 | #include <linux/of_fdt.h> | 30 | #include <linux/of_fdt.h> |
| @@ -63,15 +64,6 @@ extern const void *of_get_mac_address(struct device_node *np); | |||
| 63 | struct pci_dev; | 64 | struct pci_dev; |
| 64 | extern int of_irq_map_pci(struct pci_dev *pdev, struct of_irq *out_irq); | 65 | extern int of_irq_map_pci(struct pci_dev *pdev, struct of_irq *out_irq); |
| 65 | 66 | ||
| 66 | /* This routine is here to provide compatibility with how powerpc | ||
| 67 | * handles IRQ mapping for OF device nodes. We precompute and permanently | ||
| 68 | * register them in the platform_device objects, whereas powerpc computes them | ||
| 69 | * on request. | ||
| 70 | */ | ||
| 71 | static inline void irq_dispose_mapping(unsigned int virq) | ||
| 72 | { | ||
| 73 | } | ||
| 74 | |||
| 75 | #endif /* __ASSEMBLY__ */ | 67 | #endif /* __ASSEMBLY__ */ |
| 76 | #endif /* __KERNEL__ */ | 68 | #endif /* __KERNEL__ */ |
| 77 | #endif /* _ASM_OPENRISC_PROM_H */ | 69 | #endif /* _ASM_OPENRISC_PROM_H */ |
diff --git a/arch/sparc/include/asm/prom.h b/arch/sparc/include/asm/prom.h index edd3d3cde460..c28765110706 100644 --- a/arch/sparc/include/asm/prom.h +++ b/arch/sparc/include/asm/prom.h | |||
| @@ -22,6 +22,7 @@ | |||
| 22 | #include <linux/proc_fs.h> | 22 | #include <linux/proc_fs.h> |
| 23 | #include <linux/mutex.h> | 23 | #include <linux/mutex.h> |
| 24 | #include <linux/atomic.h> | 24 | #include <linux/atomic.h> |
| 25 | #include <linux/irqdomain.h> | ||
| 25 | 26 | ||
| 26 | #define OF_ROOT_NODE_ADDR_CELLS_DEFAULT 2 | 27 | #define OF_ROOT_NODE_ADDR_CELLS_DEFAULT 2 |
| 27 | #define OF_ROOT_NODE_SIZE_CELLS_DEFAULT 1 | 28 | #define OF_ROOT_NODE_SIZE_CELLS_DEFAULT 1 |
| @@ -55,15 +56,6 @@ struct resource; | |||
| 55 | extern void __iomem *of_ioremap(struct resource *res, unsigned long offset, unsigned long size, char *name); | 56 | extern void __iomem *of_ioremap(struct resource *res, unsigned long offset, unsigned long size, char *name); |
| 56 | extern void of_iounmap(struct resource *res, void __iomem *base, unsigned long size); | 57 | extern void of_iounmap(struct resource *res, void __iomem *base, unsigned long size); |
| 57 | 58 | ||
| 58 | /* These routines are here to provide compatibility with how powerpc | ||
| 59 | * handles IRQ mapping for OF device nodes. We precompute and permanently | ||
| 60 | * register them in the platform_device objects, whereas powerpc computes them | ||
| 61 | * on request. | ||
| 62 | */ | ||
| 63 | static inline void irq_dispose_mapping(unsigned int virq) | ||
| 64 | { | ||
| 65 | } | ||
| 66 | |||
| 67 | extern struct device_node *of_console_device; | 59 | extern struct device_node *of_console_device; |
| 68 | extern char *of_console_path; | 60 | extern char *of_console_path; |
| 69 | extern char *of_console_options; | 61 | extern char *of_console_options; |
diff --git a/include/linux/irqdomain.h b/include/linux/irqdomain.h index 52454881938a..ead4a4215797 100644 --- a/include/linux/irqdomain.h +++ b/include/linux/irqdomain.h | |||
| @@ -182,6 +182,9 @@ extern void irq_domain_generate_simple(const struct of_device_id *match, | |||
| 182 | static inline void irq_domain_generate_simple(const struct of_device_id *match, | 182 | static inline void irq_domain_generate_simple(const struct of_device_id *match, |
| 183 | u64 phys_base, unsigned int irq_start) { } | 183 | u64 phys_base, unsigned int irq_start) { } |
| 184 | #endif /* !CONFIG_OF_IRQ */ | 184 | #endif /* !CONFIG_OF_IRQ */ |
| 185 | #endif /* CONFIG_IRQ_DOMAIN */ | 185 | |
| 186 | #else /* CONFIG_IRQ_DOMAIN */ | ||
| 187 | static inline void irq_dispose_mapping(unsigned int virq) { } | ||
| 188 | #endif /* !CONFIG_IRQ_DOMAIN */ | ||
| 186 | 189 | ||
| 187 | #endif /* _LINUX_IRQDOMAIN_H */ | 190 | #endif /* _LINUX_IRQDOMAIN_H */ |
diff --git a/include/linux/of_irq.h b/include/linux/of_irq.h index d0307eed20c9..d229ad3edee0 100644 --- a/include/linux/of_irq.h +++ b/include/linux/of_irq.h | |||
| @@ -6,6 +6,7 @@ struct of_irq; | |||
| 6 | #include <linux/types.h> | 6 | #include <linux/types.h> |
| 7 | #include <linux/errno.h> | 7 | #include <linux/errno.h> |
| 8 | #include <linux/irq.h> | 8 | #include <linux/irq.h> |
| 9 | #include <linux/irqdomain.h> | ||
| 9 | #include <linux/ioport.h> | 10 | #include <linux/ioport.h> |
| 10 | #include <linux/of.h> | 11 | #include <linux/of.h> |
| 11 | 12 | ||
| @@ -65,9 +66,6 @@ extern int of_irq_map_one(struct device_node *device, int index, | |||
| 65 | extern unsigned int irq_create_of_mapping(struct device_node *controller, | 66 | extern unsigned int irq_create_of_mapping(struct device_node *controller, |
| 66 | const u32 *intspec, | 67 | const u32 *intspec, |
| 67 | unsigned int intsize); | 68 | unsigned int intsize); |
| 68 | #ifdef CONFIG_IRQ_DOMAIN | ||
| 69 | extern void irq_dispose_mapping(unsigned int irq); | ||
| 70 | #endif | ||
| 71 | extern int of_irq_to_resource(struct device_node *dev, int index, | 69 | extern int of_irq_to_resource(struct device_node *dev, int index, |
| 72 | struct resource *r); | 70 | struct resource *r); |
| 73 | extern int of_irq_count(struct device_node *dev); | 71 | extern int of_irq_count(struct device_node *dev); |
