staging: comedi: cb_pcidas64: tidy up comedi_lrange tables
authorH Hartley Sweeten <hsweeten@visionengravers.com>
Tue, 10 Dec 2013 00:31:00 +0000 (17:31 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Tue, 17 Dec 2013 18:05:45 +0000 (10:05 -0800)
Tidy up the whitespace in the comedi_lrange tables.

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

index 0fcedd050425e8c622641eca385471a3d609bfe3..4fff1738e3f8c2e45dbd0dfb534344663cd89f48 100644 (file)
@@ -429,91 +429,85 @@ static inline uint8_t attenuate_bit(unsigned int channel)
 
 /* analog input ranges for 64xx boards */
 static const struct comedi_lrange ai_ranges_64xx = {
-       8,
-       {
-        BIP_RANGE(10),
-        BIP_RANGE(5),
-        BIP_RANGE(2.5),
-        BIP_RANGE(1.25),
-        UNI_RANGE(10),
-        UNI_RANGE(5),
-        UNI_RANGE(2.5),
-        UNI_RANGE(1.25)
-        }
+       8, {
+               BIP_RANGE(10),
+               BIP_RANGE(5),
+               BIP_RANGE(2.5),
+               BIP_RANGE(1.25),
+               UNI_RANGE(10),
+               UNI_RANGE(5),
+               UNI_RANGE(2.5),
+               UNI_RANGE(1.25)
+       }
 };
 
 /* analog input ranges for 60xx boards */
 static const struct comedi_lrange ai_ranges_60xx = {
-       4,
-       {
-        BIP_RANGE(10),
-        BIP_RANGE(5),
-        BIP_RANGE(0.5),
-        BIP_RANGE(0.05),
-        }
+       4, {
+               BIP_RANGE(10),
+               BIP_RANGE(5),
+               BIP_RANGE(0.5),
+               BIP_RANGE(0.05)
+       }
 };
 
 /* analog input ranges for 6030, etc boards */
 static const struct comedi_lrange ai_ranges_6030 = {
-       14,
-       {
-        BIP_RANGE(10),
-        BIP_RANGE(5),
-        BIP_RANGE(2),
-        BIP_RANGE(1),
-        BIP_RANGE(0.5),
-        BIP_RANGE(0.2),
-        BIP_RANGE(0.1),
-        UNI_RANGE(10),
-        UNI_RANGE(5),
-        UNI_RANGE(2),
-        UNI_RANGE(1),
-        UNI_RANGE(0.5),
-        UNI_RANGE(0.2),
-        UNI_RANGE(0.1),
-        }
+       14, {
+               BIP_RANGE(10),
+               BIP_RANGE(5),
+               BIP_RANGE(2),
+               BIP_RANGE(1),
+               BIP_RANGE(0.5),
+               BIP_RANGE(0.2),
+               BIP_RANGE(0.1),
+               UNI_RANGE(10),
+               UNI_RANGE(5),
+               UNI_RANGE(2),
+               UNI_RANGE(1),
+               UNI_RANGE(0.5),
+               UNI_RANGE(0.2),
+               UNI_RANGE(0.1)
+       }
 };
 
 /* analog input ranges for 6052, etc boards */
 static const struct comedi_lrange ai_ranges_6052 = {
-       15,
-       {
-        BIP_RANGE(10),
-        BIP_RANGE(5),
-        BIP_RANGE(2.5),
-        BIP_RANGE(1),
-        BIP_RANGE(0.5),
-        BIP_RANGE(0.25),
-        BIP_RANGE(0.1),
-        BIP_RANGE(0.05),
-        UNI_RANGE(10),
-        UNI_RANGE(5),
-        UNI_RANGE(2),
-        UNI_RANGE(1),
-        UNI_RANGE(0.5),
-        UNI_RANGE(0.2),
-        UNI_RANGE(0.1),
-        }
+       15, {
+               BIP_RANGE(10),
+               BIP_RANGE(5),
+               BIP_RANGE(2.5),
+               BIP_RANGE(1),
+               BIP_RANGE(0.5),
+               BIP_RANGE(0.25),
+               BIP_RANGE(0.1),
+               BIP_RANGE(0.05),
+               UNI_RANGE(10),
+               UNI_RANGE(5),
+               UNI_RANGE(2),
+               UNI_RANGE(1),
+               UNI_RANGE(0.5),
+               UNI_RANGE(0.2),
+               UNI_RANGE(0.1)
+       }
 };
 
 /* analog input ranges for 4020 board */
 static const struct comedi_lrange ai_ranges_4020 = {
-       2,
-       {
-        BIP_RANGE(5),
-        BIP_RANGE(1),
-        }
+       2, {
+               BIP_RANGE(5),
+               BIP_RANGE(1)
+       }
 };
 
 /* analog output ranges */
 static const struct comedi_lrange ao_ranges_64xx = {
-       4,
-       {
-        BIP_RANGE(5),
-        BIP_RANGE(10),
-        UNI_RANGE(5),
-        UNI_RANGE(10),
-        }
+       4, {
+               BIP_RANGE(5),
+               BIP_RANGE(10),
+               UNI_RANGE(5),
+               UNI_RANGE(10)
+       }
 };
 
 static const int ao_range_code_64xx[] = {
@@ -528,11 +522,10 @@ static const int ao_range_code_60xx[] = {
 };
 
 static const struct comedi_lrange ao_ranges_6030 = {
-       2,
-       {
-        BIP_RANGE(10),
-        UNI_RANGE(10),
-        }
+       2, {
+               BIP_RANGE(10),
+               UNI_RANGE(10)
+       }
 };
 
 static const int ao_range_code_6030[] = {
@@ -541,11 +534,10 @@ static const int ao_range_code_6030[] = {
 };
 
 static const struct comedi_lrange ao_ranges_4020 = {
-       2,
-       {
-        BIP_RANGE(5),
-        BIP_RANGE(10),
-        }
+       2, {
+               BIP_RANGE(5),
+               BIP_RANGE(10)
+       }
 };
 
 static const int ao_range_code_4020[] = {
This page took 0.0298 seconds and 5 git commands to generate.