Commit 949fd38c authored by Ravishankar Karkala Mallikarjunayya's avatar Ravishankar Karkala Mallikarjunayya Committed by Greg Kroah-Hartman

Staging: comedi: fix line over 80 character issue in ni_at_a2150.c

This is a patch to the ni_at_a2150.c file that fixes up a line
over 80 character warning found by the checkpatch.pl tool.
Signed-off-by: default avatarRavishankar Karkala Mallikarjunayya <ravishankar.km@greenturtles.in>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 190908ba
...@@ -539,7 +539,10 @@ static int a2150_ai_cmdtest(struct comedi_device *dev, ...@@ -539,7 +539,10 @@ static int a2150_ai_cmdtest(struct comedi_device *dev,
if (err) if (err)
return 1; return 1;
/* step 2: make sure trigger sources are unique and mutually compatible */ /*
* step 2: make sure trigger sources are unique and mutually
* compatible
*/
if (cmd->start_src != TRIG_NOW && cmd->start_src != TRIG_EXT) if (cmd->start_src != TRIG_NOW && cmd->start_src != TRIG_EXT)
err++; err++;
...@@ -771,7 +774,10 @@ static int a2150_ai_rinsn(struct comedi_device *dev, struct comedi_subdevice *s, ...@@ -771,7 +774,10 @@ static int a2150_ai_rinsn(struct comedi_device *dev, struct comedi_subdevice *s,
/* start acquisition for soft trigger */ /* start acquisition for soft trigger */
outw(0, dev->iobase + FIFO_START_REG); outw(0, dev->iobase + FIFO_START_REG);
/* there is a 35.6 sample delay for data to get through the antialias filter */ /*
* there is a 35.6 sample delay for data to get through the
* antialias filter
*/
for (n = 0; n < filter_delay; n++) { for (n = 0; n < filter_delay; n++) {
for (i = 0; i < timeout; i++) { for (i = 0; i < timeout; i++) {
if (inw(dev->iobase + STATUS_REG) & FNE_BIT) if (inw(dev->iobase + STATUS_REG) & FNE_BIT)
...@@ -812,8 +818,10 @@ static int a2150_ai_rinsn(struct comedi_device *dev, struct comedi_subdevice *s, ...@@ -812,8 +818,10 @@ static int a2150_ai_rinsn(struct comedi_device *dev, struct comedi_subdevice *s,
return n; return n;
} }
/* sets bits in devpriv->clock_bits to nearest approximation of requested period, /*
* adjusts requested period to actual timing. */ * sets bits in devpriv->clock_bits to nearest approximation of requested
* period, adjusts requested period to actual timing.
*/
static int a2150_get_timing(struct comedi_device *dev, unsigned int *period, static int a2150_get_timing(struct comedi_device *dev, unsigned int *period,
int flags) int flags)
{ {
......
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