staging: comedi: dt2811: tidy up the digital subdevices

Add some whitespace to the digital input and output subdevice
initialization. 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:
H Hartley Sweeten 2016-05-04 12:47:15 -07:00 committed by Greg Kroah-Hartman
parent ef0af0ca91
commit 1d1209fea1
1 changed files with 16 additions and 16 deletions

View File

@ -240,7 +240,8 @@ static int dt2811_ao_insn_write(struct comedi_device *dev,
static int dt2811_di_insn_bits(struct comedi_device *dev, static int dt2811_di_insn_bits(struct comedi_device *dev,
struct comedi_subdevice *s, struct comedi_subdevice *s,
struct comedi_insn *insn, unsigned int *data) struct comedi_insn *insn,
unsigned int *data)
{ {
data[1] = inb(dev->iobase + DT2811_DI_REG); data[1] = inb(dev->iobase + DT2811_DI_REG);
@ -357,24 +358,23 @@ static int dt2811_attach(struct comedi_device *dev, struct comedi_devconfig *it)
if (ret) if (ret)
return ret; return ret;
/* Digital Input subdevice */
s = &dev->subdevices[2]; s = &dev->subdevices[2];
/* di subdevice */ s->type = COMEDI_SUBD_DI;
s->type = COMEDI_SUBD_DI; s->subdev_flags = SDF_READABLE;
s->subdev_flags = SDF_READABLE; s->n_chan = 8;
s->n_chan = 8; s->maxdata = 1;
s->insn_bits = dt2811_di_insn_bits; s->range_table = &range_digital;
s->maxdata = 1; s->insn_bits = dt2811_di_insn_bits;
s->range_table = &range_digital;
/* Digital Output subdevice */
s = &dev->subdevices[3]; s = &dev->subdevices[3];
/* do subdevice */ s->type = COMEDI_SUBD_DO;
s->type = COMEDI_SUBD_DO; s->subdev_flags = SDF_WRITABLE;
s->subdev_flags = SDF_WRITABLE; s->n_chan = 8;
s->n_chan = 8; s->maxdata = 1;
s->insn_bits = dt2811_do_insn_bits; s->range_table = &range_digital;
s->maxdata = 1; s->insn_bits = dt2811_do_insn_bits;
s->state = 0;
s->range_table = &range_digital;
return 0; return 0;
} }