Loading Documentation/DocBook/genericirq.tmpl +2 −2 Original line number Diff line number Diff line Loading @@ -417,8 +417,8 @@ desc->chip->end(); </para> <para> To make use of the split implementation, replace the call to __do_IRQ by a call to desc->chip->handle_irq() and associate the appropriate handler function to desc->chip->handle_irq(). __do_IRQ by a call to desc->handle_irq() and associate the appropriate handler function to desc->handle_irq(). In most cases the generic handler implementations should be sufficient. </para> Loading include/linux/irq.h +1 −1 Original line number Diff line number Diff line Loading @@ -282,7 +282,7 @@ extern irqreturn_t handle_IRQ_event(unsigned int irq, struct irqaction *action); /* * Built-in IRQ handlers for various IRQ types, * callable via desc->chip->handle_irq() * callable via desc->handle_irq() */ extern void handle_level_irq(unsigned int irq, struct irq_desc *desc); extern void handle_fasteoi_irq(unsigned int irq, struct irq_desc *desc); Loading Loading
Documentation/DocBook/genericirq.tmpl +2 −2 Original line number Diff line number Diff line Loading @@ -417,8 +417,8 @@ desc->chip->end(); </para> <para> To make use of the split implementation, replace the call to __do_IRQ by a call to desc->chip->handle_irq() and associate the appropriate handler function to desc->chip->handle_irq(). __do_IRQ by a call to desc->handle_irq() and associate the appropriate handler function to desc->handle_irq(). In most cases the generic handler implementations should be sufficient. </para> Loading
include/linux/irq.h +1 −1 Original line number Diff line number Diff line Loading @@ -282,7 +282,7 @@ extern irqreturn_t handle_IRQ_event(unsigned int irq, struct irqaction *action); /* * Built-in IRQ handlers for various IRQ types, * callable via desc->chip->handle_irq() * callable via desc->handle_irq() */ extern void handle_level_irq(unsigned int irq, struct irq_desc *desc); extern void handle_fasteoi_irq(unsigned int irq, struct irq_desc *desc); Loading