Staging: comedi: fix line over 80 character issue in daqboard2000.c
authorRavishankar Karkala Mallikarjunayya <ravishankarkm32@gmail.com>
Thu, 26 Apr 2012 10:02:18 +0000 (15:32 +0530)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 30 Apr 2012 01:47:02 +0000 (21:47 -0400)
This is a patch to the daqboard2000.c file that fixes up a
line over 80 character warning found by the checkpatch.pl tool.

Signed-off-by: Ravishankar Karkala Mallikarjunayya <ravishankar.km@greenturtles.in>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/comedi/drivers/daqboard2000.c

index 952b081..480f418 100644 (file)
@@ -411,9 +411,12 @@ static int daqboard2000_ai_insn_read(struct comedi_device *dev,
            DAQBOARD2000_AcqResetScanListFifo |
            DAQBOARD2000_AcqResetResultsFifo | DAQBOARD2000_AcqResetConfigPipe;
 
-       /* If pacer clock is not set to some high value (> 10 us), we
-          risk multiple samples to be put into the result FIFO. */
-       fpga->acqPacerClockDivLow = 1000000;    /* 1 second, should be long enough */
+       /*
+        * If pacer clock is not set to some high value (> 10 us), we
+        * risk multiple samples to be put into the result FIFO.
+        */
+       /* 1 second, should be long enough */
+       fpga->acqPacerClockDivLow = 1000000;
        fpga->acqPacerClockDivHigh = 0;
 
        gain = CR_RANGE(insn->chanspec);