diff options
author | David S. Miller <davem@sunset.davemloft.net> | 2006-12-12 04:00:06 -0500 |
---|---|---|
committer | David S. Miller <davem@sunset.davemloft.net> | 2006-12-17 17:06:57 -0500 |
commit | b06824cecafdacf2b12de583d4b41fd9c583c8c4 (patch) | |
tree | 77e2d2db5565abaebed4369f65fc24f8c397c3c0 | |
parent | 729e7d7e4dc6b905e40992b6439b07153db4bd63 (diff) |
[DocBook]: Fix two typos in generic IRQ docs.
desc-status --> desc->status
Signed-off-by: David S. Miller <davem@davemloft.net>
-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 0f4a4b6321e4..4215f69ce7e6 100644 --- a/Documentation/DocBook/genericirq.tmpl +++ b/Documentation/DocBook/genericirq.tmpl | |||
@@ -303,10 +303,10 @@ desc->status |= running; | |||
303 | do { | 303 | do { |
304 | if (desc->status & masked) | 304 | if (desc->status & masked) |
305 | desc->chip->enable(); | 305 | desc->chip->enable(); |
306 | desc-status &= ~pending; | 306 | desc->status &= ~pending; |
307 | handle_IRQ_event(desc->action); | 307 | handle_IRQ_event(desc->action); |
308 | } while (status & pending); | 308 | } while (status & pending); |
309 | desc-status &= ~running; | 309 | desc->status &= ~running; |
310 | desc->chip->end(); | 310 | desc->chip->end(); |
311 | </programlisting> | 311 | </programlisting> |
312 | </para> | 312 | </para> |