Commit b06824ce authored by David S. Miller's avatar David S. Miller

[DocBook]: Fix two typos in generic IRQ docs.

desc-status --> desc->status
Signed-off-by: default avatarDavid S. Miller <davem@davemloft.net>
parent 729e7d7e
......@@ -303,10 +303,10 @@ desc->status |= running;
do {
if (desc->status &amp; masked)
desc->chip->enable();
desc-status &amp;= ~pending;
desc->status &amp;= ~pending;
handle_IRQ_event(desc->action);
} while (status &amp; pending);
desc-status &amp;= ~running;
desc->status &amp;= ~running;
desc->chip->end();
</programlisting>
</para>
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment