From: Brian Masney Date: Mon, 4 Feb 2019 09:58:52 +0000 (-0500) Subject: genirq: export irq_chip_set_wake_parent symbol X-Git-Tag: v5.1-rc1~102^2~44 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=38f7ae9bdfb6570271c7429d8d72784465c6281e;p=thirdparty%2Fkernel%2Flinux.git genirq: export irq_chip_set_wake_parent symbol Export the irq_chip_set_wake_parent symbol so that drivers with hierarchical IRQ chips can be built as a module. Signed-off-by: Brian Masney Reported-by: Mark Brown Acked-by: Marc Zyngier Signed-off-by: Linus Walleij --- diff --git a/kernel/irq/chip.c b/kernel/irq/chip.c index 34e9690694888..086d5a34b5a0c 100644 --- a/kernel/irq/chip.c +++ b/kernel/irq/chip.c @@ -1381,6 +1381,7 @@ int irq_chip_set_wake_parent(struct irq_data *data, unsigned int on) return -ENOSYS; } +EXPORT_SYMBOL_GPL(irq_chip_set_wake_parent); #endif /**