Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9803bc09 authored by H Hartley Sweeten's avatar H Hartley Sweeten Committed by Greg Kroah-Hartman
Browse files

staging: comedi: dt282x: tidy up Analog Output subdevice init



For aesthetics, add some whitespace to the Analog Output subdevice init.

Signed-off-by: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Reviewed-by: default avatarIan Abbott <abbotti@mev.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent f8b987b4
Loading
Loading
Loading
Loading
+16 −14
Original line number Diff line number Diff line
@@ -1236,25 +1236,27 @@ static int dt282x_attach(struct comedi_device *dev, struct comedi_devconfig *it)
		s->cancel = dt282x_ai_cancel;
	}

	/* Analog Output subdevice */
	s = &dev->subdevices[1];

	s->n_chan = board->dachan;
	if (s->n_chan) {
		/* ao subsystem */
	if (board->dachan) {
		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->n_chan	= board->dachan;
		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->len_chanlist	= s->n_chan;
			s->do_cmdtest	= dt282x_ao_cmdtest;
			s->do_cmd	= dt282x_ao_cmd;
			s->cancel	= dt282x_ao_cancel;