staging: comedi: ni_labpc: fix a > 80 char line issue
Fix a checkpatch.pl warning about a 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>
This commit is contained in:
parent
810c73c7e7
commit
d5c8d9c411
1 changed files with 2 additions and 1 deletions
|
@ -1000,7 +1000,8 @@ static int labpc_ai_cmd(struct comedi_device *dev, struct comedi_subdevice *s)
|
|||
devpriv->write_byte(INTERVAL_LOAD_BITS,
|
||||
dev->iobase + INTERVAL_LOAD_REG);
|
||||
|
||||
if (cmd->convert_src == TRIG_TIMER || cmd->scan_begin_src == TRIG_TIMER) {
|
||||
if (cmd->convert_src == TRIG_TIMER ||
|
||||
cmd->scan_begin_src == TRIG_TIMER) {
|
||||
/* set up pacing */
|
||||
labpc_adc_timing(dev, cmd, mode);
|
||||
/* load counter b0 in mode 3 */
|
||||
|
|
Loading…
Add table
Reference in a new issue