Skip to content

Commit

Permalink
staging: comedi: ni_670x: cleanup the boardinfo
Browse files Browse the repository at this point in the history
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: H Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
  • Loading branch information
H Hartley Sweeten authored and Greg Kroah-Hartman committed Jul 6, 2012
1 parent 70fcd1b commit 04b136b
Showing 1 changed file with 16 additions and 18 deletions.
34 changes: 16 additions & 18 deletions drivers/staging/comedi/drivers/ni_670x.c
Original file line number Diff line number Diff line change
Expand Up @@ -61,31 +61,29 @@ Commands are not supported.
/* Board description*/

struct ni_670x_board {
unsigned short dev_id;
const char *name;
unsigned short dev_id;
unsigned short ao_chans;
unsigned short ao_bits;
};

static const struct ni_670x_board ni_670x_boards[] = {
{
.dev_id = 0x2c90,
.name = "PCI-6703",
.ao_chans = 16,
.ao_bits = 16,
},
{
.dev_id = 0x1920,
.name = "PXI-6704",
.ao_chans = 32,
.ao_bits = 16,
},
{
.dev_id = 0x1290,
.name = "PCI-6704",
.ao_chans = 32,
.ao_bits = 16,
},
.name = "PCI-6703",
.dev_id = 0x2c90,
.ao_chans = 16,
.ao_bits = 16,
}, {
.name = "PXI-6704",
.dev_id = 0x1920,
.ao_chans = 32,
.ao_bits = 16,
}, {
.name = "PCI-6704",
.dev_id = 0x1290,
.ao_chans = 32,
.ao_bits = 16,
},
};

struct ni_670x_private {
Expand Down

0 comments on commit 04b136b

Please sign in to comment.