staging: comedi: addi_apci_3120: remove test for DI subdevice
The boards supported by this driver all have digital inputs. Remove the test for it. 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
43deb75dcc
commit
f2c872e198
@@ -240,23 +240,21 @@ static int apci3120_attach_pci(struct comedi_device *dev,
|
|||||||
} else {
|
} else {
|
||||||
s->type = COMEDI_SUBD_UNUSED;
|
s->type = COMEDI_SUBD_UNUSED;
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Allocate and Initialise DI Subdevice Structures */
|
/* Allocate and Initialise DI Subdevice Structures */
|
||||||
s = &dev->subdevices[2];
|
s = &dev->subdevices[2];
|
||||||
if (this_board->i_NbrDiChannel) {
|
s->type = COMEDI_SUBD_DI;
|
||||||
s->type = COMEDI_SUBD_DI;
|
s->subdev_flags = SDF_READABLE | SDF_GROUND | SDF_COMMON;
|
||||||
s->subdev_flags = SDF_READABLE | SDF_GROUND | SDF_COMMON;
|
s->n_chan = this_board->i_NbrDiChannel;
|
||||||
s->n_chan = this_board->i_NbrDiChannel;
|
s->maxdata = 1;
|
||||||
s->maxdata = 1;
|
s->len_chanlist = this_board->i_NbrDiChannel;
|
||||||
s->len_chanlist = this_board->i_NbrDiChannel;
|
s->range_table = &range_digital;
|
||||||
s->range_table = &range_digital;
|
s->io_bits = 0; /* all bits input */
|
||||||
s->io_bits = 0; /* all bits input */
|
s->insn_config = this_board->di_config;
|
||||||
s->insn_config = this_board->di_config;
|
s->insn_read = this_board->di_read;
|
||||||
s->insn_read = this_board->di_read;
|
s->insn_write = this_board->di_write;
|
||||||
s->insn_write = this_board->di_write;
|
s->insn_bits = this_board->di_bits;
|
||||||
s->insn_bits = this_board->di_bits;
|
|
||||||
} else {
|
|
||||||
s->type = COMEDI_SUBD_UNUSED;
|
|
||||||
}
|
|
||||||
/* Allocate and Initialise DO Subdevice Structures */
|
/* Allocate and Initialise DO Subdevice Structures */
|
||||||
s = &dev->subdevices[3];
|
s = &dev->subdevices[3];
|
||||||
s->type = COMEDI_SUBD_DO;
|
s->type = COMEDI_SUBD_DO;
|
||||||
|
Reference in New Issue
Block a user