staging: comedi: ni_at_a2150: tidy up comedi_lrange tables
Tidy up the whitespace in the comedi_lrange tables. Use the BIP_RANGE macro instead of the more generic RANGE macro to reduce the potential for typos. 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>
This commit is contained in:
parent
c7b51165a6
commit
168a21038a
1 changed files with 3 additions and 4 deletions
|
@ -124,10 +124,9 @@ struct a2150_board {
|
||||||
|
|
||||||
/* analog input range */
|
/* analog input range */
|
||||||
static const struct comedi_lrange range_a2150 = {
|
static const struct comedi_lrange range_a2150 = {
|
||||||
1,
|
1, {
|
||||||
{
|
BIP_RANGE(2.828)
|
||||||
RANGE(-2.828, 2.828),
|
}
|
||||||
}
|
|
||||||
};
|
};
|
||||||
|
|
||||||
/* enum must match board indices */
|
/* enum must match board indices */
|
||||||
|
|
Loading…
Add table
Reference in a new issue