]> git.openfabrics.org - ~emulex/infiniband.git/commitdiff
staging: comedi: pcl816: remove 'n_aochan' from boardinfo
authorH Hartley Sweeten <hsweeten@visionengravers.com>
Wed, 19 Feb 2014 17:11:21 +0000 (10:11 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 21 Feb 2014 20:39:38 +0000 (12:39 -0800)
This member of the boardinfo is the same for all board types. Remove this
data from the boardinfo.

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/pcl816.c

index cabc5fe26df6a431393f49749bb12cc2c3ad6dc9..b76e9d6f938690f08062290a5f74d754a2b54fa3 100644 (file)
@@ -87,7 +87,6 @@ static const struct comedi_lrange range_pcl816 = {
 
 struct pcl816_board {
        const char *name;
-       int n_aochan;
        unsigned int IRQbits;
        int ai_maxdata;
        int ao_maxdata;
@@ -97,14 +96,12 @@ struct pcl816_board {
 static const struct pcl816_board boardtypes[] = {
        {
                .name           = "pcl816",
-               .n_aochan       = 1,
                .IRQbits        = 0x00fc,
                .ai_maxdata     = 0xffff,
                .ao_maxdata     = 0xffff,
                .ai_chanlist    = 1024,
        }, {
                .name           = "pcl814b",
-               .n_aochan       = 1,
                .IRQbits        = 0x00fc,
                .ai_maxdata     = 0x3fff,
                .ao_maxdata     = 0x3fff,
@@ -890,7 +887,7 @@ static int pcl816_attach(struct comedi_device *dev, struct comedi_devconfig *it)
 #if 0
        subdevs[1] = COMEDI_SUBD_AO;
        s->subdev_flags = SDF_WRITABLE | SDF_GROUND;
-       s->n_chan = board->n_aochan;
+       s->n_chan = 1;
        s->maxdata = board->ao_maxdata;
        s->range_table = &range_pcl816;
        break;