staging: comedi: rti800: use arrays to hold the ai/ao ranges
authorH Hartley Sweeten <hsweeten@visionengravers.com>
Tue, 9 Apr 2013 01:17:43 +0000 (18:17 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 9 Apr 2013 23:29:05 +0000 (16:29 -0700)
The analog in/analog out ranges are selected by the user using options
passed during the legacy attach. Put the valid ranges into arrays and
use those instead of the switch () statements when initializing the
subdevice range information.

If the passed user option is not valid, set the range information to
range_unknown.

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>
drivers/staging/comedi/drivers/rti800.c

index 6eb470a623ca104c80b9e8e2e0081637ca8767e3..8494047dc42bfefb68c4200677d5d2ca06a9f67a 100644 (file)
@@ -124,6 +124,17 @@ static const struct comedi_lrange range_rti800_ai_unipolar = {
        }
 };
 
+static const struct comedi_lrange *const rti800_ai_ranges[] = {
+       &range_rti800_ai_10_bipolar,
+       &range_rti800_ai_5_bipolar,
+       &range_rti800_ai_unipolar,
+};
+
+static const struct comedi_lrange *const rti800_ao_ranges[] = {
+       &range_bipolar10,
+       &range_unipolar10,
+};
+
 struct rti800_board {
        const char *name;
        int has_ao;
@@ -323,17 +334,9 @@ static int rti800_attach(struct comedi_device *dev, struct comedi_devconfig *it)
        s->n_chan = (it->options[2] ? 16 : 8);
        s->insn_read = rti800_ai_insn_read;
        s->maxdata = 0xfff;
-       switch (it->options[3]) {
-       case 0:
-               s->range_table = &range_rti800_ai_10_bipolar;
-               break;
-       case 1:
-               s->range_table = &range_rti800_ai_5_bipolar;
-               break;
-       case 2:
-               s->range_table = &range_rti800_ai_unipolar;
-               break;
-       }
+       s->range_table  = (it->options[3] < ARRAY_SIZE(rti800_ai_ranges))
+                               ? rti800_ai_ranges[it->options[3]]
+                               : &range_unknown;
 
        s = &dev->subdevices[1];
        if (board->has_ao) {
@@ -345,22 +348,14 @@ static int rti800_attach(struct comedi_device *dev, struct comedi_devconfig *it)
                s->insn_write = rti800_ao_insn_write;
                s->maxdata = 0xfff;
                s->range_table_list = devpriv->ao_range_type_list;
-               switch (it->options[5]) {
-               case 0:
-                       devpriv->ao_range_type_list[0] = &range_bipolar10;
-                       break;
-               case 1:
-                       devpriv->ao_range_type_list[0] = &range_unipolar10;
-                       break;
-               }
-               switch (it->options[7]) {
-               case 0:
-                       devpriv->ao_range_type_list[1] = &range_bipolar10;
-                       break;
-               case 1:
-                       devpriv->ao_range_type_list[1] = &range_unipolar10;
-                       break;
-               }
+               devpriv->ao_range_type_list[0] =
+                       (it->options[5] < ARRAY_SIZE(rti800_ao_ranges))
+                               ? rti800_ao_ranges[it->options[5]]
+                               : &range_unknown;
+               devpriv->ao_range_type_list[1] =
+                       (it->options[7] < ARRAY_SIZE(rti800_ao_ranges))
+                               ? rti800_ao_ranges[it->options[7]]
+                               : &range_unknown;
        } else {
                s->type = COMEDI_SUBD_UNUSED;
        }
This page took 0.027478 seconds and 5 git commands to generate.