Commit ac971c948598b1ca6638ae7a89d3e237b90ad02b

Authored by Ravishankar Karkala Mallikarjunayya
Committed by Greg Kroah-Hartman
1 parent 3c5510ba50

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

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>

Showing 1 changed file with 6 additions and 3 deletions Side-by-side Diff

drivers/staging/comedi/drivers/daqboard2000.c
... ... @@ -411,9 +411,12 @@
411 411 DAQBOARD2000_AcqResetScanListFifo |
412 412 DAQBOARD2000_AcqResetResultsFifo | DAQBOARD2000_AcqResetConfigPipe;
413 413  
414   - /* If pacer clock is not set to some high value (> 10 us), we
415   - risk multiple samples to be put into the result FIFO. */
416   - fpga->acqPacerClockDivLow = 1000000; /* 1 second, should be long enough */
  414 + /*
  415 + * If pacer clock is not set to some high value (> 10 us), we
  416 + * risk multiple samples to be put into the result FIFO.
  417 + */
  418 + /* 1 second, should be long enough */
  419 + fpga->acqPacerClockDivLow = 1000000;
417 420 fpga->acqPacerClockDivHigh = 0;
418 421  
419 422 gain = CR_RANGE(insn->chanspec);