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

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

staging: comedi: adl_pci6208: add whitespace to the subdev init



Add whitespace to the subdev initialization and remove the
unnecessary comments to improve readability.

Signed-off-by: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent fc2536fd
Loading
Loading
Loading
Loading
+17 −17
Original line number Diff line number Diff line
@@ -252,10 +252,10 @@ static int pci6208_attach(struct comedi_device *dev,
	s = dev->subdevices + 0;
	/* analog output subdevice */
	s->type		= COMEDI_SUBD_AO;
	s->subdev_flags = SDF_WRITABLE;	/* anything else to add here?? */
	s->subdev_flags	= SDF_WRITABLE;
	s->n_chan	= thisboard->ao_chans;
	s->maxdata = 0xffff;	/* 16-bit DAC */
	s->range_table = &range_bipolar10;	/* this needs to be checked. */
	s->maxdata	= 0xffff;
	s->range_table	= &range_bipolar10;
	s->insn_write	= pci6208_ao_winsn;
	s->insn_read	= pci6208_ao_rinsn;