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

staging: comedi: pcmuio: remove unused boardinfo

These members of 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 eddb297e
...@@ -128,19 +128,15 @@ ...@@ -128,19 +128,15 @@
struct pcmuio_board { struct pcmuio_board {
const char *name; const char *name;
const int num_asics; const int num_asics;
const int num_channels_per_port;
const int num_ports;
}; };
static const struct pcmuio_board pcmuio_boards[] = { static const struct pcmuio_board pcmuio_boards[] = {
{ {
.name = "pcmuio48", .name = "pcmuio48",
.num_asics = 1, .num_asics = 1,
.num_ports = 6,
}, { }, {
.name = "pcmuio96", .name = "pcmuio96",
.num_asics = 2, .num_asics = 2,
.num_ports = 12,
}, },
}; };
......
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