aboutsummaryrefslogtreecommitdiff
path: root/Documentation/core-api
diff options
context:
space:
mode:
authorGravatar Philipp Stanner <pstanner@redhat.com> 2023-08-24 13:01:09 +0200
committerGravatar Jonathan Corbet <corbet@lwn.net> 2023-08-28 12:45:31 -0600
commitc63594f2d66690805eb78b75e4b8e8dc9f2672bf (patch)
treea6a5d3041ac1be27b9c5b3693379cefe4e1e20f4 /Documentation/core-api
parentinput: docs: pxrc: remove reference to phoenix-sim (diff)
downloadlinux-c63594f2d66690805eb78b75e4b8e8dc9f2672bf.tar.gz
linux-c63594f2d66690805eb78b75e4b8e8dc9f2672bf.tar.bz2
linux-c63594f2d66690805eb78b75e4b8e8dc9f2672bf.zip
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
Diffstat (limited to 'Documentation/core-api')
-rw-r--r--Documentation/core-api/genericirq.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/Documentation/core-api/genericirq.rst b/Documentation/core-api/genericirq.rst
index f959c9b53f61..4a460639ab1c 100644
--- a/Documentation/core-api/genericirq.rst
+++ b/Documentation/core-api/genericirq.rst
@@ -264,7 +264,7 @@ The following control flow is implemented (simplified excerpt)::
desc->irq_data.chip->irq_unmask();
desc->status &= ~pending;
handle_irq_event(desc->action);
- } while (status & pending);
+ } while (desc->status & pending);
desc->status &= ~running;