diff options
author | Brian Masney <masneyb@onstation.org> | 2019-02-04 04:58:52 -0500 |
---|---|---|
committer | Linus Walleij <linus.walleij@linaro.org> | 2019-02-04 11:02:51 +0100 |
commit | 38f7ae9bdfb6570271c7429d8d72784465c6281e (patch) | |
tree | d7e7da832e30f6c3562e339ea41a08958b91c9b4 /kernel | |
parent | 876811f7c34eff986462ed2def81f4ecfbcef2ec (diff) | |
download | linux-38f7ae9bdfb6570271c7429d8d72784465c6281e.tar.bz2 |
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')
-rw-r--r-- | kernel/irq/chip.c | 1 |
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 /** |