Commit 834df4b5 authored by H Hartley Sweeten's avatar H Hartley Sweeten Committed by Greg Kroah-Hartman

staging: comedi: dt3000: cleanup the range tables

Use the BIP_RANGE() macro instead of the more generic RANGE()
macro.

Cleanup the whitespace.
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 fbbeddfa
...@@ -61,20 +61,22 @@ AO commands are not supported. ...@@ -61,20 +61,22 @@ AO commands are not supported.
#include "comedi_fc.h" #include "comedi_fc.h"
static const struct comedi_lrange range_dt3000_ai = { 4, { static const struct comedi_lrange range_dt3000_ai = {
RANGE(-10, 10), 4, {
RANGE(-5, 5), BIP_RANGE(10),
RANGE(-2.5, 2.5), BIP_RANGE(5),
RANGE(-1.25, 1.25) BIP_RANGE(2.5),
} BIP_RANGE(1.25)
}
}; };
static const struct comedi_lrange range_dt3000_ai_pgl = { 4, { static const struct comedi_lrange range_dt3000_ai_pgl = {
RANGE(-10, 10), 4, {
RANGE(-1, 1), BIP_RANGE(10),
RANGE(-0.1, 0.1), BIP_RANGE(1),
RANGE(-0.02, 0.02) BIP_RANGE(0.1),
} BIP_RANGE(0.02)
}
}; };
struct dt3k_boardtype { struct dt3k_boardtype {
......
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