From d4fd9a5861b2349855e02d403b108dc98cdda022 Mon Sep 17 00:00:00 2001 From: H Hartley Sweeten Date: Tue, 18 Jun 2013 13:23:21 -0700 Subject: [PATCH] staging: comedi: pcmuio: remove unused boardinfo These members of the boardinfo are not used by the driver. Remove them. Signed-off-by: H Hartley Sweeten Reviewed-by: Ian Abbott Signed-off-by: Greg Kroah-Hartman --- drivers/staging/comedi/drivers/pcmuio.c | 4 ---- 1 file changed, 4 deletions(-) diff --git a/drivers/staging/comedi/drivers/pcmuio.c b/drivers/staging/comedi/drivers/pcmuio.c index 2e08e661d7ef..85a64807a073 100644 --- a/drivers/staging/comedi/drivers/pcmuio.c +++ b/drivers/staging/comedi/drivers/pcmuio.c @@ -128,19 +128,15 @@ struct pcmuio_board { const char *name; const int num_asics; - const int num_channels_per_port; - const int num_ports; }; static const struct pcmuio_board pcmuio_boards[] = { { .name = "pcmuio48", .num_asics = 1, - .num_ports = 6, }, { .name = "pcmuio96", .num_asics = 2, - .num_ports = 12, }, }; -- 2.34.1