staging: comedi: addi_apci_3501: remove analog output boardinfo
There is not need to pass the analog output subdevice information in the boardinfo. Just initialize the subdevice directly. 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:
parent
cfaa23de51
commit
9f89ce8c62
1 changed files with 3 additions and 6 deletions
|
@ -16,9 +16,6 @@ static const struct addi_board apci3501_boardtypes[] = {
|
||||||
.i_IorangeBase1 = APCI3501_ADDRESS_RANGE,
|
.i_IorangeBase1 = APCI3501_ADDRESS_RANGE,
|
||||||
.i_PCIEeprom = ADDIDATA_EEPROM,
|
.i_PCIEeprom = ADDIDATA_EEPROM,
|
||||||
.pc_EepromChip = ADDIDATA_S5933,
|
.pc_EepromChip = ADDIDATA_S5933,
|
||||||
.pr_AoRangelist = &range_apci3501_ao,
|
|
||||||
.ao_config = i_APCI3501_ConfigAnalogOutput,
|
|
||||||
.ao_write = i_APCI3501_WriteAnalogOutput,
|
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -217,9 +214,9 @@ static int apci3501_auto_attach(struct comedi_device *dev,
|
||||||
s->maxdata = 0x3fff;
|
s->maxdata = 0x3fff;
|
||||||
s->len_chanlist =
|
s->len_chanlist =
|
||||||
devpriv->s_EeParameters.i_NbrAoChannel;
|
devpriv->s_EeParameters.i_NbrAoChannel;
|
||||||
s->range_table = this_board->pr_AoRangelist;
|
s->range_table = &range_apci3501_ao;
|
||||||
s->insn_config = this_board->ao_config;
|
s->insn_config = i_APCI3501_ConfigAnalogOutput;
|
||||||
s->insn_write = this_board->ao_write;
|
s->insn_write = i_APCI3501_WriteAnalogOutput;
|
||||||
} else {
|
} else {
|
||||||
s->type = COMEDI_SUBD_UNUSED;
|
s->type = COMEDI_SUBD_UNUSED;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Reference in a new issue