Commit 73894987 authored by H Hartley Sweeten's avatar H Hartley Sweeten Committed by Greg Kroah-Hartman

staging: comedi: ni_mio_common: fix logical continuations

Fix the checkpatch.pl issues:
CHECK: Logical continuations should be on the previous line
Signed-off-by: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Reviewed-by: default avatarIan Abbott <abbotti@mev.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent beb1cc1b
...@@ -925,9 +925,8 @@ static int ni_ai_drain_dma(struct comedi_device *dev) ...@@ -925,9 +925,8 @@ static int ni_ai_drain_dma(struct comedi_device *dev)
if (devpriv->ai_mite_chan) { if (devpriv->ai_mite_chan) {
for (i = 0; i < timeout; i++) { for (i = 0; i < timeout; i++) {
if ((ni_stc_readw(dev, NISTC_AI_STATUS1_REG) & if ((ni_stc_readw(dev, NISTC_AI_STATUS1_REG) &
NISTC_AI_STATUS1_FIFO_E) NISTC_AI_STATUS1_FIFO_E) &&
&& mite_bytes_in_transit(devpriv->ai_mite_chan) == mite_bytes_in_transit(devpriv->ai_mite_chan) == 0)
0)
break; break;
udelay(5); udelay(5);
} }
...@@ -1809,8 +1808,8 @@ static void ni_load_channelgain_list(struct comedi_device *dev, ...@@ -1809,8 +1808,8 @@ static void ni_load_channelgain_list(struct comedi_device *dev,
return; return;
} }
if (n_chan == 1 && !devpriv->is_611x && !devpriv->is_6143) { if (n_chan == 1 && !devpriv->is_611x && !devpriv->is_6143) {
if (devpriv->changain_state if (devpriv->changain_state &&
&& devpriv->changain_spec == list[0]) { devpriv->changain_spec == list[0]) {
/* ready to go. */ /* ready to go. */
return; return;
} }
...@@ -1824,8 +1823,8 @@ static void ni_load_channelgain_list(struct comedi_device *dev, ...@@ -1824,8 +1823,8 @@ static void ni_load_channelgain_list(struct comedi_device *dev,
/* Set up Calibration mode if required */ /* Set up Calibration mode if required */
if (devpriv->is_6143) { if (devpriv->is_6143) {
if ((list[0] & CR_ALT_SOURCE) if ((list[0] & CR_ALT_SOURCE) &&
&& !devpriv->ai_calib_source_enabled) { !devpriv->ai_calib_source_enabled) {
/* Strobe Relay enable bit */ /* Strobe Relay enable bit */
ni_writew(dev, devpriv->ai_calib_source | ni_writew(dev, devpriv->ai_calib_source |
NI6143_CALIB_CHAN_RELAY_ON, NI6143_CALIB_CHAN_RELAY_ON,
...@@ -1835,8 +1834,8 @@ static void ni_load_channelgain_list(struct comedi_device *dev, ...@@ -1835,8 +1834,8 @@ static void ni_load_channelgain_list(struct comedi_device *dev,
devpriv->ai_calib_source_enabled = 1; devpriv->ai_calib_source_enabled = 1;
/* Allow relays to change */ /* Allow relays to change */
msleep_interruptible(100); msleep_interruptible(100);
} else if (!(list[0] & CR_ALT_SOURCE) } else if (!(list[0] & CR_ALT_SOURCE) &&
&& devpriv->ai_calib_source_enabled) { devpriv->ai_calib_source_enabled) {
/* Strobe Relay disable bit */ /* Strobe Relay disable bit */
ni_writew(dev, devpriv->ai_calib_source | ni_writew(dev, devpriv->ai_calib_source |
NI6143_CALIB_CHAN_RELAY_OFF, NI6143_CALIB_CHAN_RELAY_OFF,
......
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