diff options
author | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2009-08-24 15:28:04 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-08-25 04:05:05 -0400 |
commit | 31b47cf7609288893a10706c648faa932c7aef90 (patch) | |
tree | 11ab785f6cfc82411699b85c92626c4a91373646 | |
parent | daedc71836e5a398fd0cc0e12c5cb43539478485 (diff) |
genirq: Add prototype for handle_nested_irq()
The function is supposed to be called from the primary IRQ
handler for a demultiplexing chip so make a protype visible for
them.
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Cc: Mark Brown <broonie@opensource.wolfsonmicro.com>
LKML-Reference: <1251142084-9852-1-git-send-email-broonie@opensource.wolfsonmicro.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
-rw-r--r-- | include/linux/irq.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/linux/irq.h b/include/linux/irq.h index 6956df9961ab..9e9eb76faf81 100644 --- a/include/linux/irq.h +++ b/include/linux/irq.h | |||
@@ -282,6 +282,7 @@ extern void handle_edge_irq(unsigned int irq, struct irq_desc *desc); | |||
282 | extern void handle_simple_irq(unsigned int irq, struct irq_desc *desc); | 282 | extern void handle_simple_irq(unsigned int irq, struct irq_desc *desc); |
283 | extern void handle_percpu_irq(unsigned int irq, struct irq_desc *desc); | 283 | extern void handle_percpu_irq(unsigned int irq, struct irq_desc *desc); |
284 | extern void handle_bad_irq(unsigned int irq, struct irq_desc *desc); | 284 | extern void handle_bad_irq(unsigned int irq, struct irq_desc *desc); |
285 | extern void handle_nested_irq(unsigned int irq); | ||
285 | 286 | ||
286 | /* | 287 | /* |
287 | * Monolithic do_IRQ implementation. | 288 | * Monolithic do_IRQ implementation. |