Commit c63594f2 authored by Philipp Stanner's avatar Philipp Stanner Committed by Jonathan Corbet
Browse files

Docu: genericirq.rst: fix irq-example



A code example was missing the pointer to dereference a variable.

Signed-off-by: default avatarPhilipp Stanner <pstanner@redhat.com>
Signed-off-by: default avatarJonathan Corbet <corbet@lwn.net>
Link: https://lore.kernel.org/r/20230824110109.18844-1-pstanner@redhat.com
parent 8d58ce1b
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -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;