]> git.openfabrics.org - ~shefty/rdma-dev.git/commitdiff
staging: comedi: usbduxsigma: use comedi provided range_unipolar2_5
authorH Hartley Sweeten <hsweeten@visionengravers.com>
Wed, 3 Apr 2013 20:39:54 +0000 (13:39 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 5 Apr 2013 21:13:30 +0000 (14:13 -0700)
Remove the private range, range_usbdux_ao_range, in this driver and use
the comedi provided range_unipolar2_5 instead.

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

index 656135ef3972b577edf73d031b23609292d66a55..1c2bfb4423e3b5655662792c75bcc4c5e3450e14 100644 (file)
@@ -176,12 +176,6 @@ static const struct comedi_lrange range_usbdux_ai_range = { 1, {
                                                                }
 };
 
-static const struct comedi_lrange range_usbdux_ao_range = { 1, {
-                                                               UNI_RANGE
-                                                               (2.5),
-                                                              }
-};
-
 /*
  * private structure of one subdevice
  */
@@ -2269,7 +2263,7 @@ static int usbduxsigma_attach_common(struct comedi_device *dev,
        /* 8 bit resolution */
        s->maxdata = 0x00ff;
        /* unipolar range */
-       s->range_table = (&range_usbdux_ao_range);
+       s->range_table = &range_unipolar2_5;
        /* callback */
        s->do_cmdtest = usbdux_ao_cmdtest;
        s->do_cmd = usbdux_ao_cmd;