aboutsummaryrefslogtreecommitdiffstats
path: root/kernel/irq
diff options
context:
space:
mode:
authorBrian Masney <masneyb@onstation.org>2019-02-04 04:58:52 -0500
committerLinus Walleij <linus.walleij@linaro.org>2019-02-04 11:02:51 +0100
commit38f7ae9bdfb6570271c7429d8d72784465c6281e (patch)
treed7e7da832e30f6c3562e339ea41a08958b91c9b4 /kernel/irq
parentgpiolib: acpi: Correct kernel doc of struct acpi_gpio_event (diff)
downloadlinux-dev-38f7ae9bdfb6570271c7429d8d72784465c6281e.tar.xz
linux-dev-38f7ae9bdfb6570271c7429d8d72784465c6281e.zip
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 <masneyb@onstation.org> Reported-by: Mark Brown <broonie@kernel.org> Acked-by: Marc Zyngier <marc.zyngier@arm.com> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
Diffstat (limited to 'kernel/irq')
-rw-r--r--kernel/irq/chip.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/kernel/irq/chip.c b/kernel/irq/chip.c
index 34e969069488..086d5a34b5a0 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
/**