mirror of
https://gitee.com/bianbu-linux/linux-6.6
synced 2025-04-24 14:07:52 -04:00
Docu: genericirq.rst: fix irq-example
A code example was missing the pointer to dereference a variable. Signed-off-by: Philipp Stanner <pstanner@redhat.com> Signed-off-by: Jonathan Corbet <corbet@lwn.net> Link: https://lore.kernel.org/r/20230824110109.18844-1-pstanner@redhat.com
This commit is contained in:
parent
8d58ce1b1e
commit
c63594f2d6
1 changed files with 1 additions and 1 deletions
|
@ -264,7 +264,7 @@ The following control flow is implemented (simplified excerpt)::
|
||||||
desc->irq_data.chip->irq_unmask();
|
desc->irq_data.chip->irq_unmask();
|
||||||
desc->status &= ~pending;
|
desc->status &= ~pending;
|
||||||
handle_irq_event(desc->action);
|
handle_irq_event(desc->action);
|
||||||
} while (status & pending);
|
} while (desc->status & pending);
|
||||||
desc->status &= ~running;
|
desc->status &= ~running;
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue