]> Pileus Git - ~andy/linux/commitdiff
staging: comedi: dt3000: cleanup the range tables
authorH Hartley Sweeten <hartleys@visionengravers.com>
Fri, 26 Oct 2012 00:24:53 +0000 (17:24 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 26 Oct 2012 16:18:17 +0000 (09:18 -0700)
Use the BIP_RANGE() macro instead of the more generic RANGE()
macro.

Cleanup the whitespace.

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

index 0e84bf4dafeb07b6a825f77437e6d5751099b8c0..5fcfd06e6aeeb9611fecfa8b2d6c3d7e7ef9dc39 100644 (file)
@@ -61,20 +61,22 @@ AO commands are not supported.
 
 #include "comedi_fc.h"
 
-static const struct comedi_lrange range_dt3000_ai = { 4, {
-                                                         RANGE(-10, 10),
-                                                         RANGE(-5, 5),
-                                                         RANGE(-2.5, 2.5),
-                                                         RANGE(-1.25, 1.25)
-                                                         }
+static const struct comedi_lrange range_dt3000_ai = {
+       4, {
+               BIP_RANGE(10),
+               BIP_RANGE(5),
+               BIP_RANGE(2.5),
+               BIP_RANGE(1.25)
+       }
 };
 
-static const struct comedi_lrange range_dt3000_ai_pgl = { 4, {
-                                                             RANGE(-10, 10),
-                                                             RANGE(-1, 1),
-                                                             RANGE(-0.1, 0.1),
-                                                             RANGE(-0.02, 0.02)
-                                                             }
+static const struct comedi_lrange range_dt3000_ai_pgl = {
+       4, {
+               BIP_RANGE(10),
+               BIP_RANGE(1),
+               BIP_RANGE(0.1),
+               BIP_RANGE(0.02)
+       }
 };
 
 struct dt3k_boardtype {