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

staging: comedi: icp_multi: remove cardtype from boardinfo

This variable is not used in 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 d68a8635
...@@ -60,9 +60,6 @@ There are 4 x 12-bit Analogue Outputs. Ranges : 5V, 10V, +/-5V, +/-10V ...@@ -60,9 +60,6 @@ There are 4 x 12-bit Analogue Outputs. Ranges : 5V, 10V, +/-5V, +/-10V
#define PCI_DEVICE_ID_ICP_MULTI 0x8000 #define PCI_DEVICE_ID_ICP_MULTI 0x8000
/* Hardware types of the cards */
#define TYPE_ICP_MULTI 0
#define IORANGE_ICP_MULTI 32 #define IORANGE_ICP_MULTI 32
#define ICP_MULTI_ADC_CSR 0 /* R/W: ADC command/status register */ #define ICP_MULTI_ADC_CSR 0 /* R/W: ADC command/status register */
...@@ -129,7 +126,6 @@ struct boardtype { ...@@ -129,7 +126,6 @@ struct boardtype {
int device_id; int device_id;
int iorange; /* I/O range len */ int iorange; /* I/O range len */
char have_irq; /* 1=card support IRQ */ char have_irq; /* 1=card support IRQ */
char cardtype; /* 0=ICP Multi */
}; };
struct icp_multi_private { struct icp_multi_private {
...@@ -877,7 +873,6 @@ static const struct boardtype boardtypes[] = { ...@@ -877,7 +873,6 @@ static const struct boardtype boardtypes[] = {
.device_id = PCI_DEVICE_ID_ICP_MULTI, .device_id = PCI_DEVICE_ID_ICP_MULTI,
.iorange = IORANGE_ICP_MULTI, .iorange = IORANGE_ICP_MULTI,
.have_irq = 1, .have_irq = 1,
.cardtype = TYPE_ICP_MULTI,
}, },
}; };
......
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