mirror of
https://github.com/torvalds/linux.git
synced 2026-09-23 22:14:03 +02:00
staging: comedi: rti802: tidy up the subdevice init
For aesthetics, add some whitespace to the subdevice init. 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:
parent
57450d9036
commit
052c198b6e
|
|
@ -109,22 +109,21 @@ static int rti802_attach(struct comedi_device *dev, struct comedi_devconfig *it)
|
|||
if (ret)
|
||||
return ret;
|
||||
|
||||
/* Analog Output subdevice */
|
||||
s = &dev->subdevices[0];
|
||||
/* ao subdevice */
|
||||
s->type = COMEDI_SUBD_AO;
|
||||
s->subdev_flags = SDF_WRITABLE;
|
||||
s->maxdata = 0xfff;
|
||||
s->n_chan = 8;
|
||||
s->insn_read = rti802_ao_insn_read;
|
||||
s->insn_write = rti802_ao_insn_write;
|
||||
s->type = COMEDI_SUBD_AO;
|
||||
s->subdev_flags = SDF_WRITABLE;
|
||||
s->maxdata = 0xfff;
|
||||
s->n_chan = 8;
|
||||
s->insn_read = rti802_ao_insn_read;
|
||||
s->insn_write = rti802_ao_insn_write;
|
||||
s->range_table_list = devpriv->range_type_list;
|
||||
|
||||
for (i = 0; i < 8; i++) {
|
||||
devpriv->dac_coding[i] = (it->options[3 + 2 * i])
|
||||
? (dac_straight)
|
||||
: (dac_2comp);
|
||||
? (dac_straight) : (dac_2comp);
|
||||
devpriv->range_type_list[i] = (it->options[2 + 2 * i])
|
||||
? &range_unipolar10 : &range_bipolar10;
|
||||
? &range_unipolar10 : &range_bipolar10;
|
||||
}
|
||||
|
||||
return 0;
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user