staging: comedi: me_daq: analog output subdevice could be unused
One of the boards supported by this driver does not have analog outputs. Fix the attach code to account for this. Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com> Cc: Ian Abbott <abbotti@mev.co.uk> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
10cba302ed
commit
43d51f885a
@@ -735,14 +735,18 @@ static int me_attach_pci(struct comedi_device *dev, struct pci_dev *pcidev)
|
||||
s->do_cmd = me_ai_do_cmd;
|
||||
|
||||
s = &dev->subdevices[1];
|
||||
s->type = COMEDI_SUBD_AO;
|
||||
s->subdev_flags = SDF_WRITEABLE | SDF_COMMON;
|
||||
s->n_chan = board->ao_channel_nbr;
|
||||
s->maxdata = board->ao_resolution_mask;
|
||||
s->len_chanlist = board->ao_channel_nbr;
|
||||
s->range_table = board->ao_range_list;
|
||||
s->insn_read = me_ao_insn_read;
|
||||
s->insn_write = me_ao_insn_write;
|
||||
if (board->ao_channel_nbr) {
|
||||
s->type = COMEDI_SUBD_AO;
|
||||
s->subdev_flags = SDF_WRITEABLE | SDF_COMMON;
|
||||
s->n_chan = board->ao_channel_nbr;
|
||||
s->maxdata = board->ao_resolution_mask;
|
||||
s->len_chanlist = board->ao_channel_nbr;
|
||||
s->range_table = board->ao_range_list;
|
||||
s->insn_read = me_ao_insn_read;
|
||||
s->insn_write = me_ao_insn_write;
|
||||
} else {
|
||||
s->type = COMEDI_SUBD_UNUSED;
|
||||
}
|
||||
|
||||
s = &dev->subdevices[2];
|
||||
s->type = COMEDI_SUBD_DIO;
|
||||
|
Reference in New Issue
Block a user