Commit 745c22a0 authored by H Hartley Sweeten's avatar H Hartley Sweeten Committed by Greg Kroah-Hartman

staging: comedi: adl_pci6208: remove the boardinfo 'ao_bits'

All the boards supported by this driver have 16-bit DACs. The
ao_bits variable in the boardinfo is commented out anyway.
Just remove it.
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 cde6f08a
...@@ -58,7 +58,6 @@ struct pci6208_board { ...@@ -58,7 +58,6 @@ struct pci6208_board {
const char *name; const char *name;
unsigned short dev_id; /* `lspci` will show you this */ unsigned short dev_id; /* `lspci` will show you this */
int ao_chans; int ao_chans;
/* int ao_bits; */
}; };
static const struct pci6208_board pci6208_boards[] = { static const struct pci6208_board pci6208_boards[] = {
...@@ -66,19 +65,16 @@ static const struct pci6208_board pci6208_boards[] = { ...@@ -66,19 +65,16 @@ static const struct pci6208_board pci6208_boards[] = {
.name = "pci6208v", .name = "pci6208v",
.dev_id = 0x6208, // not sure .dev_id = 0x6208, // not sure
.ao_chans = 8 .ao_chans = 8
// , .ao_bits = 16
}, },
{ {
.name = "pci6216v", .name = "pci6216v",
.dev_id = 0x6208, // not sure .dev_id = 0x6208, // not sure
.ao_chans = 16 .ao_chans = 16
// , .ao_bits = 16
}, */ }, */
{ {
.name = "pci6208a", .name = "pci6208a",
.dev_id = 0x6208, .dev_id = 0x6208,
.ao_chans = 8 .ao_chans = 8
/* , .ao_bits = 16 */
} }
}; };
......
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