]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
staging: comedi: dt282x: tidy up Analog Output subdevice init
authorH Hartley Sweeten <hsweeten@visionengravers.com>
Fri, 20 Jun 2014 20:12:53 +0000 (13:12 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 27 Jun 2014 00:08:20 +0000 (20:08 -0400)
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>
drivers/staging/comedi/drivers/dt282x.c

index 326924fcf90b47b7321a44f544a875c6953233e7..c26ae86b3e2ab63c614639b89e23095f98938c6d 100644 (file)
@@ -1236,31 +1236,33 @@ static int dt282x_attach(struct comedi_device *dev, struct comedi_devconfig *it)
                s->cancel = dt282x_ai_cancel;
        }
 
+       /* Analog Output subdevice */
        s = &dev->subdevices[1];
+       if (board->dachan) {
+               s->type         = COMEDI_SUBD_AO;
+               s->subdev_flags = SDF_WRITABLE;
+               s->n_chan       = board->dachan;
+               s->maxdata      = board->ao_maxdata;
 
-       s->n_chan = board->dachan;
-       if (s->n_chan) {
-               /* ao subsystem */
-               s->type = COMEDI_SUBD_AO;
-               s->subdev_flags = SDF_WRITABLE;
-               s->insn_read = dt282x_ao_insn_read;
-               s->insn_write = dt282x_ao_insn_write;
-               s->maxdata = board->ao_maxdata;
+               /* ranges are per-channel, set by jumpers on the board */
                s->range_table_list = devpriv->darangelist;
                devpriv->darangelist[0] = opt_ao_range_lkup(it->options[9]);
                devpriv->darangelist[1] = opt_ao_range_lkup(it->options[10]);
                devpriv->da0_2scomp = it->options[6] ? 1 : 0;
                devpriv->da1_2scomp = it->options[7] ? 1 : 0;
+
+               s->insn_read    = dt282x_ao_insn_read;
+               s->insn_write   = dt282x_ao_insn_write;
                if (dev->irq) {
                        dev->write_subdev = s;
-                       s->subdev_flags |= SDF_CMD_WRITE;
-                       s->len_chanlist = 2;
-                       s->do_cmdtest = dt282x_ao_cmdtest;
-                       s->do_cmd = dt282x_ao_cmd;
-                       s->cancel = dt282x_ao_cancel;
+                       s->subdev_flags |= SDF_CMD_WRITE;
+                       s->len_chanlist = s->n_chan;
+                       s->do_cmdtest   = dt282x_ao_cmdtest;
+                       s->do_cmd       = dt282x_ao_cmd;
+                       s->cancel       = dt282x_ao_cancel;
                }
        } else {
-               s->type = COMEDI_SUBD_UNUSED;
+               s->type         = COMEDI_SUBD_UNUSED;
        }
 
        /* Digital I/O subdevice */