Commit 04b136b6 authored by H Hartley Sweeten's avatar H Hartley Sweeten Committed by Greg Kroah-Hartman

staging: comedi: ni_670x: cleanup the boardinfo

For aesthetic reasons, reorder the boardinfo struct so that the
'name' pointer is first. Also, add some whitespace to the boardinfo
to improve readability.
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 70fcd1b7
...@@ -61,31 +61,29 @@ Commands are not supported. ...@@ -61,31 +61,29 @@ Commands are not supported.
/* Board description*/ /* Board description*/
struct ni_670x_board { struct ni_670x_board {
unsigned short dev_id;
const char *name; const char *name;
unsigned short dev_id;
unsigned short ao_chans; unsigned short ao_chans;
unsigned short ao_bits; unsigned short ao_bits;
}; };
static const struct ni_670x_board ni_670x_boards[] = { static const struct ni_670x_board ni_670x_boards[] = {
{ {
.dev_id = 0x2c90, .name = "PCI-6703",
.name = "PCI-6703", .dev_id = 0x2c90,
.ao_chans = 16, .ao_chans = 16,
.ao_bits = 16, .ao_bits = 16,
}, }, {
{ .name = "PXI-6704",
.dev_id = 0x1920, .dev_id = 0x1920,
.name = "PXI-6704", .ao_chans = 32,
.ao_chans = 32, .ao_bits = 16,
.ao_bits = 16, }, {
}, .name = "PCI-6704",
{ .dev_id = 0x1290,
.dev_id = 0x1290, .ao_chans = 32,
.name = "PCI-6704", .ao_bits = 16,
.ao_chans = 32, },
.ao_bits = 16,
},
}; };
struct ni_670x_private { struct ni_670x_private {
......
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