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:
Ian Abbott
2014-08-19 16:06:31 +01:00
committed by Greg Kroah-Hartman
parent bd98a4abff
commit 4e3f39b166

View File

@@ -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;
}