staging: comedi: addi_apci_3120: remove boardinfo 'i_AiChannelList'
authorH Hartley Sweeten <hsweeten@visionengravers.com>
Tue, 14 Oct 2014 17:44:44 +0000 (10:44 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 29 Oct 2014 07:48:55 +0000 (15:48 +0800)
All boardinfo entries have this member set as '16'. This is also the Analog
Input 'n_chan'. For aesthetics, initialize the Analog Input 'len_chanlist'
with s->n_chan and remove the boardinfo member.

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Reviewed-by: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/comedi/drivers/addi_apci_3120.c

index 32e5ad487a1c4299122e668b1971174d435917f6..d555427d3359668f228cd9e0a046af98bb04189e 100644 (file)
@@ -16,7 +16,6 @@ enum apci3120_boardid {
 
 struct apci3120_board {
        const char *name;
-       int i_AiChannelList;
        int i_NbrAoChannel;
        int i_AiMaxdata;
        int i_AoMaxdata;
@@ -25,14 +24,12 @@ struct apci3120_board {
 static const struct apci3120_board apci3120_boardtypes[] = {
        [BOARD_APCI3120] = {
                .name                   = "apci3120",
-               .i_AiChannelList        = 16,
                .i_NbrAoChannel         = 8,
                .i_AiMaxdata            = 0xffff,
                .i_AoMaxdata            = 0x3fff,
        },
        [BOARD_APCI3001] = {
                .name                   = "apci3001",
-               .i_AiChannelList        = 16,
                .i_AiMaxdata            = 0xfff,
        },
 };
@@ -109,7 +106,7 @@ static int apci3120_auto_attach(struct comedi_device *dev,
                | SDF_DIFF;
        s->n_chan = 16;
        s->maxdata = this_board->i_AiMaxdata;
-       s->len_chanlist = this_board->i_AiChannelList;
+       s->len_chanlist = s->n_chan;
        s->range_table = &range_apci3120_ai;
 
        s->insn_config = apci3120_ai_insn_config;
This page took 0.026282 seconds and 5 git commands to generate.