mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-02 01:06:46 +09:00
staging: comedi: dt3000: tidy up memory subdevice init
Remove the unnecessary 'len_chanlist' initialization. This member is only used by subdevices that support async commands. For aesthetics, reorder the initialization a bit. Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com> Reviewed-by: Ian Abbott <abbotti@mev.co.uk> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
3a7b06f732
commit
649c836ea3
@@ -704,15 +704,14 @@ static int dt3000_auto_attach(struct comedi_device *dev,
|
||||
s->insn_config = dt3k_dio_insn_config;
|
||||
s->insn_bits = dt3k_dio_insn_bits;
|
||||
|
||||
/* Memory subdevice */
|
||||
s = &dev->subdevices[3];
|
||||
/* mem subsystem */
|
||||
s->type = COMEDI_SUBD_MEMORY;
|
||||
s->subdev_flags = SDF_READABLE;
|
||||
s->n_chan = 0x1000;
|
||||
s->insn_read = dt3k_mem_insn_read;
|
||||
s->maxdata = 0xff;
|
||||
s->len_chanlist = 1;
|
||||
s->range_table = &range_unknown;
|
||||
s->insn_read = dt3k_mem_insn_read;
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user