diff options
author | Vincent Stehlé <[email protected]> | 2014-08-22 01:31:20 +0200 |
---|---|---|
committer | Arnd Bergmann <[email protected]> | 2014-09-25 17:31:52 +0200 |
commit | 4fdea26762c6095b18c22ca19bc3857064620ae4 (patch) | |
tree | c5512a02036b8db9b0d9854ee80fcc38a206f99f | |
parent | 14bbd322f4264afc26c93907add4870f686d28b9 (diff) |
irq: Export handle_fasteoi_irq
Export handle_fasteoi_irq to be able to use it in e.g. the Zynq gpio driver
since commit 6dd859508336 ("gpio: zynq: Fix IRQ handlers").
This fixes the following link issue:
ERROR: "handle_fasteoi_irq" [drivers/gpio/gpio-zynq.ko] undefined!
Signed-off-by: Vincent Stehlé <[email protected]>
Acked-by: Arnd Bergmann <[email protected]>
Cc: [email protected]
Cc: Vincent Stehle <[email protected]>
Cc: Lars-Peter Clausen <[email protected]>
Cc: Linus Walleij <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Thomas Gleixner <[email protected]>
-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 a2b28a2fd7b1..6223fab9a9d2 100644 --- a/kernel/irq/chip.c +++ b/kernel/irq/chip.c @@ -517,6 +517,7 @@ out: chip->irq_eoi(&desc->irq_data); raw_spin_unlock(&desc->lock); } +EXPORT_SYMBOL_GPL(handle_fasteoi_irq); /** * handle_edge_irq - edge type IRQ handler |