]> git.karo-electronics.de Git - linux-beck.git/commitdiff
staging: comedi: adv_pci1724: remove ao_range_list_1724
authorH Hartley Sweeten <hsweeten@visionengravers.com>
Wed, 24 Jul 2013 17:03:50 +0000 (10:03 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 25 Jul 2013 20:20:17 +0000 (13:20 -0700)
All the AO channels have the same ranges. Remove the subdevice
s->range_table_list and just use the s->range_table to setup the
ranges.

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

index 84907c79ca2b35c9b540a5f563c65b7ddb0c031b..009a3039fc4fef4ce23e13aba09023795e4eadc3 100644 (file)
@@ -125,10 +125,6 @@ static const struct comedi_lrange ao_ranges_1724 = { 4,
        }
 };
 
-static const struct comedi_lrange *const ao_range_list_1724[NUM_AO_CHANNELS] = {
-       [0 ... NUM_AO_CHANNELS - 1] = &ao_ranges_1724,
-};
-
 /* this structure is for data unique to this hardware driver. */
 struct adv_pci1724_private {
        int ao_value[NUM_AO_CHANNELS];
@@ -308,7 +304,7 @@ static int setup_subdevices(struct comedi_device *dev)
        s->subdev_flags = SDF_READABLE | SDF_WRITABLE | SDF_GROUND;
        s->n_chan = NUM_AO_CHANNELS;
        s->maxdata = 0x3fff;
-       s->range_table_list = ao_range_list_1724;
+       s->range_table = &ao_ranges_1724;
        s->insn_read = ao_readback_insn;
        s->insn_write = ao_winsn;