From: H Hartley Sweeten Date: Tue, 20 Jan 2015 21:53:13 +0000 (-0700) Subject: staging: comedi: adv_pci1710: tidy up analog output subdevice init X-Git-Tag: v4.0-rc1~82^2~217 X-Git-Url: https://git.karo-electronics.de/?a=commitdiff_plain;h=b420eeaf10223b2f666ac0fff9d65f5b66ffed65;p=karo-tx-linux.git 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 Reviewed-by: Ian Abbott Signed-off-by: Greg Kroah-Hartman --- diff --git a/drivers/staging/comedi/drivers/adv_pci1710.c b/drivers/staging/comedi/drivers/adv_pci1710.c index 297a560c26f0..ba34a26cbb9a 100644 --- a/drivers/staging/comedi/drivers/adv_pci1710.c +++ b/drivers/staging/comedi/drivers/adv_pci1710.c @@ -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; }