aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/include/linux/of_irq.h
diff options
context:
space:
mode:
authorHuacai Chen <chenhuacai@loongson.cn>2022-09-27 20:45:57 +0800
committerMarc Zyngier <maz@kernel.org>2022-09-28 14:11:28 +0100
commit612d5494aef9bd2ab68d585a8c0ac2b16d12d520 (patch)
treee3f1f8e20e91c34b294bfe75c767d4f00b2f5390 /include/linux/of_irq.h
parentLinux 6.0-rc3 (diff)
downloadwireguard-linux-612d5494aef9bd2ab68d585a8c0ac2b16d12d520.tar.xz
wireguard-linux-612d5494aef9bd2ab68d585a8c0ac2b16d12d520.zip
irqchip: Make irqchip_init() usable on pure ACPI systems
Pure ACPI systems (e.g., LoongArch) do not need OF_IRQ, but still require irqchip_init() to perform the ACPI irqchip probing, even when OF_IRQ isn't selected. Relax the dependency to enable the generic irqchip support when ACPI_GENERIC_GSI is configured. Signed-off-by: Huacai Chen <chenhuacai@loongson.cn> Tested-by: Tiezhu Yang <yangtiezhu@loongson.cn> [maz: revamped commit message] Signed-off-by: Marc Zyngier <maz@kernel.org> Link: https://lore.kernel.org/r/20220927124557.3246737-1-chenhuacai@loongson.cn
Diffstat (limited to 'include/linux/of_irq.h')
-rw-r--r--include/linux/of_irq.h6
1 files changed, 4 insertions, 2 deletions
diff --git a/include/linux/of_irq.h b/include/linux/of_irq.h
index 83fccd0c9bba..d6d3eae2f145 100644
--- a/include/linux/of_irq.h
+++ b/include/linux/of_irq.h
@@ -37,9 +37,8 @@ extern unsigned int irq_create_of_mapping(struct of_phandle_args *irq_data);
extern int of_irq_to_resource(struct device_node *dev, int index,
struct resource *r);
-extern void of_irq_init(const struct of_device_id *matches);
-
#ifdef CONFIG_OF_IRQ
+extern void of_irq_init(const struct of_device_id *matches);
extern int of_irq_parse_one(struct device_node *device, int index,
struct of_phandle_args *out_irq);
extern int of_irq_count(struct device_node *dev);
@@ -57,6 +56,9 @@ extern struct irq_domain *of_msi_map_get_device_domain(struct device *dev,
extern void of_msi_configure(struct device *dev, struct device_node *np);
u32 of_msi_map_id(struct device *dev, struct device_node *msi_np, u32 id_in);
#else
+static inline void of_irq_init(const struct of_device_id *matches)
+{
+}
static inline int of_irq_parse_one(struct device_node *device, int index,
struct of_phandle_args *out_irq)
{