Commit bebd04cc4569844effbdae49c01a48e57fa77864

Authored by Krzysztof Halasa
Committed by Jiri Kosina
1 parent af901ca181

doc: Fix IRQ chip docs

This patch updates the IRQ docs to match reality.

Signed-off-by: Krzysztof Halasa <khc@pm.waw.pl>
Signed-off-by: Jiri Kosina <jkosina@suse.cz>

Showing 2 changed files with 3 additions and 3 deletions Side-by-side Diff

Documentation/DocBook/genericirq.tmpl
... ... @@ -417,8 +417,8 @@
417 417 </para>
418 418 <para>
419 419 To make use of the split implementation, replace the call to
420   - __do_IRQ by a call to desc->chip->handle_irq() and associate
421   - the appropriate handler function to desc->chip->handle_irq().
  420 + __do_IRQ by a call to desc->handle_irq() and associate
  421 + the appropriate handler function to desc->handle_irq().
422 422 In most cases the generic handler implementations should
423 423 be sufficient.
424 424 </para>
... ... @@ -282,7 +282,7 @@
282 282  
283 283 /*
284 284 * Built-in IRQ handlers for various IRQ types,
285   - * callable via desc->chip->handle_irq()
  285 + * callable via desc->handle_irq()
286 286 */
287 287 extern void handle_level_irq(unsigned int irq, struct irq_desc *desc);
288 288 extern void handle_fasteoi_irq(unsigned int irq, struct irq_desc *desc);