[DocBook]: Fix two typos in generic IRQ docs.
desc-status --> desc->status Signed-off-by: David S. Miller <davem@davemloft.net>
This commit is contained in:
parent
729e7d7e4d
commit
b06824ceca
1 changed files with 2 additions and 2 deletions
|
@ -303,10 +303,10 @@ desc->status |= running;
|
||||||
do {
|
do {
|
||||||
if (desc->status & masked)
|
if (desc->status & masked)
|
||||||
desc->chip->enable();
|
desc->chip->enable();
|
||||||
desc-status &= ~pending;
|
desc->status &= ~pending;
|
||||||
handle_IRQ_event(desc->action);
|
handle_IRQ_event(desc->action);
|
||||||
} while (status & pending);
|
} while (status & pending);
|
||||||
desc-status &= ~running;
|
desc->status &= ~running;
|
||||||
desc->chip->end();
|
desc->chip->end();
|
||||||
</programlisting>
|
</programlisting>
|
||||||
</para>
|
</para>
|
||||||
|
|
Loading…
Add table
Reference in a new issue