diff options
author | David S. Miller <davem@sunset.davemloft.net> | 2006-12-12 01:00:06 -0800 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-12-17 14:06:57 -0800 |
commit | b06824cecafdacf2b12de583d4b41fd9c583c8c4 (patch) | |
tree | 77e2d2db5565abaebed4369f65fc24f8c397c3c0 /Documentation | |
parent | 729e7d7e4dc6b905e40992b6439b07153db4bd63 (diff) |
[DocBook]: Fix two typos in generic IRQ docs.
desc-status --> desc->status
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'Documentation')
-rw-r--r-- | Documentation/DocBook/genericirq.tmpl | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Documentation/DocBook/genericirq.tmpl b/Documentation/DocBook/genericirq.tmpl index 0f4a4b6321e..4215f69ce7e 100644 --- a/Documentation/DocBook/genericirq.tmpl +++ b/Documentation/DocBook/genericirq.tmpl @@ -303,10 +303,10 @@ desc->status |= running; do { if (desc->status & masked) desc->chip->enable(); - desc-status &= ~pending; + desc->status &= ~pending; handle_IRQ_event(desc->action); } while (status & pending); -desc-status &= ~running; +desc->status &= ~running; desc->chip->end(); </programlisting> </para> |