staging: comedi: adv_pci1710: tidy up analog output subdevice init

For aesthetics, add some whitespace to the analog output 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:
H Hartley Sweeten 2015-01-20 14:53:13 -07:00 committed by Greg Kroah-Hartman
parent 1fbe6e91a0
commit b420eeaf10
1 changed files with 8 additions and 8 deletions

View File

@ -1088,18 +1088,18 @@ static int pci1710_auto_attach(struct comedi_device *dev,
if (this_board->has_ao) {
s = &dev->subdevices[subdev];
s->type = COMEDI_SUBD_AO;
s->subdev_flags = SDF_WRITABLE | SDF_GROUND | SDF_COMMON;
s->maxdata = 0x0fff;
s->range_table = this_board->rangelist_ao;
s->type = COMEDI_SUBD_AO;
s->subdev_flags = SDF_WRITABLE | SDF_GROUND | SDF_COMMON;
s->maxdata = 0x0fff;
s->range_table = this_board->rangelist_ao;
switch (this_board->cardtype) {
case TYPE_PCI1720:
s->n_chan = 4;
s->insn_write = pci1720_ao_insn_write;
s->n_chan = 4;
s->insn_write = pci1720_ao_insn_write;
break;
default:
s->n_chan = 2;
s->insn_write = pci171x_ao_insn_write;
s->n_chan = 2;
s->insn_write = pci171x_ao_insn_write;
break;
}