mirror of https://gitee.com/openkylin/linux.git
[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
|
@ -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>
|
||||
|
|
Loading…
Reference in New Issue