Documentation/core-api/genericirq.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-)
A code example was missing the pointer to dereference a variable.
Signed-off-by: Philipp Stanner <pstanner@redhat.com>
---
Documentation/core-api/genericirq.rst | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
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;
--
2.40.0
Philipp Stanner <pstanner@redhat.com> writes: > A code example was missing the pointer to dereference a variable. > > Signed-off-by: Philipp Stanner <pstanner@redhat.com> > --- > Documentation/core-api/genericirq.rst | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > 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; Applied, thanks. jon
© 2016 - 2025 Red Hat, Inc.