Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit ac971c94 authored by Ravishankar Karkala Mallikarjunayya's avatar Ravishankar Karkala Mallikarjunayya Committed by Greg Kroah-Hartman
Browse files

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: default avatarRavishankar Karkala Mallikarjunayya <ravishankar.km@greenturtles.in>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 3c5510ba
Loading
Loading
Loading
Loading
+6 −3
Original line number Diff line number Diff line
@@ -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);