mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-01 08:46:36 +09:00
staging: comedi: ni_labpc: Logical continuations should be on the previous line
Fix checkpatch issues "CHECK: Logical continuations should be on the previous line". Signed-off-by: Ian Abbott <abbotti@mev.co.uk> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
bd98a4abff
commit
4e3f39b166
@@ -929,9 +929,9 @@ static irqreturn_t labpc_interrupt(int irq, void *d)
|
||||
devpriv->stat2 = devpriv->read_byte(dev, STAT2_REG);
|
||||
|
||||
if ((devpriv->stat1 & (STAT1_GATA0 | STAT1_CNTINT | STAT1_OVERFLOW |
|
||||
STAT1_OVERRUN | STAT1_DAVAIL)) == 0
|
||||
&& (devpriv->stat2 & STAT2_OUTA1) == 0
|
||||
&& (devpriv->stat2 & STAT2_FIFONHF)) {
|
||||
STAT1_OVERRUN | STAT1_DAVAIL)) == 0 &&
|
||||
(devpriv->stat2 & STAT2_OUTA1) == 0 &&
|
||||
(devpriv->stat2 & STAT2_FIFONHF)) {
|
||||
return IRQ_NONE;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user