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>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
3c5510ba50
commit
ac971c9485
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user