dect
/
linux-2.6
Archived
13
0
Fork 0

staging: comedi: ni_670x: removve unused 'ao_bits'

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>
This commit is contained in:
H Hartley Sweeten 2012-06-29 17:41:47 -07:00 committed by Greg Kroah-Hartman
parent ebbc09797e
commit 442bcd2372
1 changed files with 0 additions and 4 deletions

View File

@ -64,7 +64,6 @@ 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[] = {
@ -72,17 +71,14 @@ 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,
},
};