Skip to content

Commit

Permalink
staging: comedi: ni_670x: removve unused 'ao_bits'
Browse files Browse the repository at this point in the history
All the NI 670x boards have 16-bit anaolog output DACs. The
'ao_bits' in the boardinfo is not used so remove it.

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 ebbc097 commit 442bcd2
Showing 1 changed file with 0 additions and 4 deletions.
4 changes: 0 additions & 4 deletions drivers/staging/comedi/drivers/ni_670x.c
Original file line number Diff line number Diff line change
Expand Up @@ -64,25 +64,21 @@ struct ni_670x_board {
const char *name;
unsigned short dev_id;
unsigned short ao_chans;
unsigned short ao_bits;
};

static const struct ni_670x_board ni_670x_boards[] = {
{
.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,
},
};

Expand Down

0 comments on commit 442bcd2

Please sign in to comment.