aboutsummaryrefslogtreecommitdiffstats
path: root/Documentation/DocBook
diff options
context:
space:
mode:
authorDavid S. Miller <davem@sunset.davemloft.net>2006-12-12 04:00:06 -0500
committerDavid S. Miller <davem@sunset.davemloft.net>2006-12-17 17:06:57 -0500
commitb06824cecafdacf2b12de583d4b41fd9c583c8c4 (patch)
tree77e2d2db5565abaebed4369f65fc24f8c397c3c0 /Documentation/DocBook
parent729e7d7e4dc6b905e40992b6439b07153db4bd63 (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/DocBook')
-rw-r--r--Documentation/DocBook/genericirq.tmpl4
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;
303do { 303do {
304 if (desc->status &amp; masked) 304 if (desc->status &amp; masked)
305 desc->chip->enable(); 305 desc->chip->enable();
306 desc-status &amp;= ~pending; 306 desc->status &amp;= ~pending;
307 handle_IRQ_event(desc->action); 307 handle_IRQ_event(desc->action);
308} while (status &amp; pending); 308} while (status &amp; pending);
309desc-status &amp;= ~running; 309desc->status &amp;= ~running;
310desc->chip->end(); 310desc->chip->end();
311 </programlisting> 311 </programlisting>
312 </para> 312 </para>