staging: comedi: cb_pcidas: fix some > 80 char lines
authorH Hartley Sweeten <hartleys@visionengravers.com>
Wed, 27 Jun 2012 01:05:12 +0000 (18:05 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 6 Jul 2012 22:23:53 +0000 (15:23 -0700)
Fix some of the comments that cause checkpatch.pl to complain
about WARNING: line over 80 characters.

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/comedi/drivers/cb_pcidas.c

index ff08f9e..12fb087 100644 (file)
@@ -1043,12 +1043,16 @@ static int cb_pcidas_ai_cmd(struct comedi_device *dev,
        devpriv->adc_fifo_bits |= INTE;
        devpriv->adc_fifo_bits &= ~INT_MASK;
        if (cmd->flags & TRIG_WAKE_EOS) {
-               if (cmd->convert_src == TRIG_NOW && cmd->chanlist_len > 1)
-                       devpriv->adc_fifo_bits |= INT_EOS;      /*  interrupt end of burst */
-               else
-                       devpriv->adc_fifo_bits |= INT_FNE;      /*  interrupt fifo not empty */
+               if (cmd->convert_src == TRIG_NOW && cmd->chanlist_len > 1) {
+                       /* interrupt end of burst */
+                       devpriv->adc_fifo_bits |= INT_EOS;
+               } else {
+                       /* interrupt fifo not empty */
+                       devpriv->adc_fifo_bits |= INT_FNE;
+               }
        } else {
-               devpriv->adc_fifo_bits |= INT_FHF;      /* interrupt fifo half full */
+               /* interrupt fifo half full */
+               devpriv->adc_fifo_bits |= INT_FHF;
        }
 
        /*  enable (and clear) interrupts */
@@ -1474,7 +1478,9 @@ static irqreturn_t cb_pcidas_interrupt(int irq, void *d)
                                        INT_ADCFIFO)) == 0)
                                break;
                        cfc_write_to_buffer(s, inw(devpriv->adc_fifo));
-                       if (async->cmd.stop_src == TRIG_COUNT && --devpriv->count == 0) {       /* end of acquisition */
+                       if (async->cmd.stop_src == TRIG_COUNT &&
+                           --devpriv->count == 0) {
+                               /* end of acquisition */
                                cb_pcidas_cancel(dev, s);
                                async->events |= COMEDI_CB_EOA;
                                break;
@@ -1620,7 +1626,10 @@ static int cb_pcidas_attach(struct comedi_device *dev,
                s->type = COMEDI_SUBD_AO;
                s->subdev_flags = SDF_READABLE | SDF_WRITABLE | SDF_GROUND;
                s->n_chan = thisboard->ao_nchan;
-               /*  analog out resolution is the same as analog input resolution, so use ai_bits */
+               /*
+                * analog out resolution is the same as
+                * analog input resolution, so use ai_bits
+                */
                s->maxdata = (1 << thisboard->ai_bits) - 1;
                s->range_table = &cb_pcidas_ao_ranges;
                s->insn_read = cb_pcidas_ao_readback_insn;