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

staging: comedi: pcl711: remove unused boardinfo

The 'is_dg' and 'n_ranges' members in the boardinfo are not used by
the driver. Remove them.
Signed-off-by: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Reviewed-by: default avatarIan Abbott <abbotti@mev.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 5deee091
...@@ -135,8 +135,6 @@ struct pcl711_board { ...@@ -135,8 +135,6 @@ struct pcl711_board {
const char *name; const char *name;
int is_pcl711b; int is_pcl711b;
int is_8112; int is_8112;
int is_dg;
int n_ranges;
int n_aichan; int n_aichan;
int n_aochan; int n_aochan;
int maxirq; int maxirq;
...@@ -146,14 +144,12 @@ struct pcl711_board { ...@@ -146,14 +144,12 @@ struct pcl711_board {
static const struct pcl711_board boardtypes[] = { static const struct pcl711_board boardtypes[] = {
{ {
.name = "pcl711", .name = "pcl711",
.n_ranges = 5,
.n_aichan = 8, .n_aichan = 8,
.n_aochan = 1, .n_aochan = 1,
.ai_range_type = &range_bipolar5, .ai_range_type = &range_bipolar5,
}, { }, {
.name = "pcl711b", .name = "pcl711b",
.is_pcl711b = 1, .is_pcl711b = 1,
.n_ranges = 5,
.n_aichan = 8, .n_aichan = 8,
.n_aochan = 1, .n_aochan = 1,
.maxirq = 7, .maxirq = 7,
...@@ -161,7 +157,6 @@ static const struct pcl711_board boardtypes[] = { ...@@ -161,7 +157,6 @@ static const struct pcl711_board boardtypes[] = {
}, { }, {
.name = "acl8112hg", .name = "acl8112hg",
.is_8112 = 1, .is_8112 = 1,
.n_ranges = 12,
.n_aichan = 16, .n_aichan = 16,
.n_aochan = 2, .n_aochan = 2,
.maxirq = 15, .maxirq = 15,
...@@ -169,8 +164,6 @@ static const struct pcl711_board boardtypes[] = { ...@@ -169,8 +164,6 @@ static const struct pcl711_board boardtypes[] = {
}, { }, {
.name = "acl8112dg", .name = "acl8112dg",
.is_8112 = 1, .is_8112 = 1,
.is_dg = 1,
.n_ranges = 9,
.n_aichan = 16, .n_aichan = 16,
.n_aochan = 2, .n_aochan = 2,
.maxirq = 15, .maxirq = 15,
......
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