mirror of https://gitee.com/openkylin/linux.git
staging: comedi: ni_660x: checkpatch.pl cleanup (space prohibited)
Fix the checkpatch.pl warning: WARNING: space prohibited before semicolon 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
c8c8ff887c
commit
56e9bef541
|
@ -1122,9 +1122,8 @@ static int ni_660x_auto_attach(struct comedi_device *dev,
|
|||
s = &dev->subdevices[NI_660X_GPCT_SUBDEV(i)];
|
||||
if (i < ni_660x_num_counters(dev)) {
|
||||
s->type = COMEDI_SUBD_COUNTER;
|
||||
s->subdev_flags =
|
||||
SDF_READABLE | SDF_WRITABLE | SDF_LSAMPL |
|
||||
SDF_CMD_READ /* | SDF_CMD_WRITE */ ;
|
||||
s->subdev_flags = SDF_READABLE | SDF_WRITABLE |
|
||||
SDF_LSAMPL | SDF_CMD_READ;
|
||||
s->n_chan = 3;
|
||||
s->maxdata = 0xffffffff;
|
||||
s->insn_read = ni_tio_insn_read;
|
||||
|
|
Loading…
Reference in New Issue