Commit 4884f724 authored by H Hartley Sweeten's avatar H Hartley Sweeten Committed by Greg Kroah-Hartman

staging: comedi: dnya_pci10xx: remove unused fields in the boardinfo

The *_bits information in the boardinfo is not used by the driver.
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 f2eacff1
......@@ -58,13 +58,9 @@ struct boardtype {
const char *name;
int device_id;
int ai_chans;
int ai_bits;
int ao_chans;
int ao_bits;
int di_chans;
int di_bits;
int do_chans;
int do_bits;
const struct comedi_lrange *range_ai;
const char *range_codes_ai;
};
......@@ -74,13 +70,9 @@ static const struct boardtype boardtypes[] = {
.name = "dyna_pci1050",
.device_id = 0x1050,
.ai_chans = 16,
.ai_bits = 12,
.ao_chans = 16,
.ao_bits = 12,
.di_chans = 16,
.di_bits = 16,
.do_chans = 16,
.do_bits = 16,
.range_ai = &range_pci1050_ai,
.range_codes_ai = range_codes_pci1050_ai,
},
......
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