summaryrefslogtreecommitdiffstats
path: root/drivers/staging
diff options
context:
space:
mode:
authorIan Abbott <abbotti@mev.co.uk>2014-09-01 12:03:44 +0100
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-09-02 11:21:31 -0700
commit867ae76dda9365c125ac88f256ca20d557e9e6e8 (patch)
tree5c3c5c7329700d0b175624138523355532445e40 /drivers/staging
parente69ad291fbb08f79bf8014efeb29e2a74944bfa8 (diff)
downloadlinux-867ae76dda9365c125ac88f256ca20d557e9e6e8.tar.bz2
staging: comedi: amplc_pci230: remove ao_chans member
The PCI230(+) has an AO subdevice with 2 channels, but the PCI260(+) has none. The `ao_chans` member of `struct pci230_board` indicates whether the board has an AO subdevice and the number of AO channels. The `ao_bits` member indicates the AO sample width in bits and will only be non-zero for boards with an AO subdevice. Use `ao_bits` to indicate whether the board has an AO subdevice. If it has, assume the the number of AO channels is 2. Then the `ao_chans` member becomes redundant and can be removed. Signed-off-by: Ian Abbott <abbotti@mev.co.uk> Reviewed-by: H Hartley Sweeten <hsweeten@visionengravers.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/staging')
-rw-r--r--drivers/staging/comedi/drivers/amplc_pci230.c11
1 files changed, 4 insertions, 7 deletions
diff --git a/drivers/staging/comedi/drivers/amplc_pci230.c b/drivers/staging/comedi/drivers/amplc_pci230.c
index 42a79d26dd97..75b0e7911793 100644
--- a/drivers/staging/comedi/drivers/amplc_pci230.c
+++ b/drivers/staging/comedi/drivers/amplc_pci230.c
@@ -455,7 +455,6 @@ struct pci230_board {
const char *name;
unsigned short id;
int ai_bits;
- int ao_chans;
int ao_bits;
int have_dio;
unsigned int min_hwver; /* Minimum hardware version supported. */
@@ -466,7 +465,6 @@ static const struct pci230_board pci230_boards[] = {
.name = "pci230+",
.id = PCI_DEVICE_ID_PCI230,
.ai_bits = 16,
- .ao_chans = 2,
.ao_bits = 12,
.have_dio = 1,
.min_hwver = 1,
@@ -481,7 +479,6 @@ static const struct pci230_board pci230_boards[] = {
.name = "pci230",
.id = PCI_DEVICE_ID_PCI230,
.ai_bits = 12,
- .ao_chans = 2,
.ao_bits = 12,
.have_dio = 1,
},
@@ -2609,7 +2606,7 @@ static int pci230_auto_attach(struct comedi_device *dev,
*/
extfunc |= PCI230P_EXTFUNC_GAT_EXTTRIG;
}
- if (thisboard->ao_chans > 0 && devpriv->hwver >= 2) {
+ if (thisboard->ao_bits && devpriv->hwver >= 2) {
/* Enable DAC FIFO functionality. */
extfunc |= PCI230P2_EXTFUNC_DACFIFO;
}
@@ -2670,15 +2667,15 @@ static int pci230_auto_attach(struct comedi_device *dev,
s = &dev->subdevices[1];
/* analog output subdevice */
- if (thisboard->ao_chans > 0) {
+ if (thisboard->ao_bits) {
s->type = COMEDI_SUBD_AO;
s->subdev_flags = SDF_WRITABLE | SDF_GROUND;
- s->n_chan = thisboard->ao_chans;
+ s->n_chan = 2;
s->maxdata = (1 << thisboard->ao_bits) - 1;
s->range_table = &pci230_ao_range;
s->insn_write = pci230_ao_insn_write;
s->insn_read = comedi_readback_insn_read;
- s->len_chanlist = thisboard->ao_chans;
+ s->len_chanlist = 2;
if (dev->irq) {
dev->write_subdev = s;
s->subdev_flags |= SDF_CMD_WRITE;