Commit 38691ec1 authored by H Hartley Sweeten's avatar H Hartley Sweeten Committed by Greg Kroah-Hartman

staging: comedi: usbdux: tidy up the comedi_lrange tables

Cleanup the whitespace in the tables.
Signed-off-by: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent e5acdc35
...@@ -185,25 +185,19 @@ sampling rate. If you sample two channels you get 4kHz and so on. ...@@ -185,25 +185,19 @@ sampling rate. If you sample two channels you get 4kHz and so on.
/* number of retries to get the right dux command */ /* number of retries to get the right dux command */
#define RETRIES 10 #define RETRIES 10
/**************************************************/ static const struct comedi_lrange range_usbdux_ai_range = {
/* comedi constants */ 4, {
static const struct comedi_lrange range_usbdux_ai_range = { 4, { BIP_RANGE(4.096),
BIP_RANGE BIP_RANGE(4.096 / 2),
(4.096), UNI_RANGE(4.096),
BIP_RANGE(4.096 UNI_RANGE(4.096 / 2)
/ 2),
UNI_RANGE
(4.096),
UNI_RANGE(4.096
/ 2)
} }
}; };
static const struct comedi_lrange range_usbdux_ao_range = { 2, { static const struct comedi_lrange range_usbdux_ao_range = {
BIP_RANGE 2, {
(4.096), BIP_RANGE(4.096),
UNI_RANGE UNI_RANGE(4.096)
(4.096),
} }
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment