1HANDLE_LEVEL_IRQ(9) Public Functions Provided HANDLE_LEVEL_IRQ(9)
2
3
4
6 handle_level_irq - Level type irq handler
7
9 void handle_level_irq(unsigned int irq, struct irq_desc * desc);
10
12 irq
13 the interrupt number
14
15 desc
16 the interrupt description structure for this irq
17
19 Level type interrupts are active as long as the hardware line has the
20 active level. This may require to mask the interrupt and unmask it
21 after the associated handler has acknowledged the device, so the
22 interrupt line is back to inactive.
23
25 Thomas Gleixner <tglx@linutronix.de>
26 Author.
27
28 Ingo Molnar <mingo@elte.hu>
29 Author.
30
32Kernel Hackers Manual 2.6. June 2019 HANDLE_LEVEL_IRQ(9)