aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorIan Abbott <abbotti@mev.co.uk>2014-07-28 13:09:35 +0100
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2014-07-30 16:48:42 -0700
commitf57f5848f9b313889702b018220ea256284dbddf (patch)
treebbcb304dd095181bab01d644c678599ba950544f
parentstaging: comedi: amplc_pc236: split into ISA, PCI and common module (diff)
downloadlinux-dev-f57f5848f9b313889702b018220ea256284dbddf.tar.xz
linux-dev-f57f5848f9b313889702b018220ea256284dbddf.zip
staging: comedi: amplc_pc236, amplc_pci236: get rid of bustype
The `bustype` member of `struct pc236_board` variables is initialized, but never used. Remove it along with the enumerated constants associated with it. Signed-off-by: Ian Abbott <abbotti@mev.co.uk> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
-rw-r--r--drivers/staging/comedi/drivers/amplc_pc236.c1
-rw-r--r--drivers/staging/comedi/drivers/amplc_pc236.h3
-rw-r--r--drivers/staging/comedi/drivers/amplc_pci236.c1
3 files changed, 0 insertions, 5 deletions
diff --git a/drivers/staging/comedi/drivers/amplc_pc236.c b/drivers/staging/comedi/drivers/amplc_pc236.c
index b95b877e5ed3..875cc19cb969 100644
--- a/drivers/staging/comedi/drivers/amplc_pc236.c
+++ b/drivers/staging/comedi/drivers/amplc_pc236.c
@@ -65,7 +65,6 @@ static int pc236_attach(struct comedi_device *dev, struct comedi_devconfig *it)
static const struct pc236_board pc236_boards[] = {
{
.name = "pc36at",
- .bustype = isa_bustype,
},
};
diff --git a/drivers/staging/comedi/drivers/amplc_pc236.h b/drivers/staging/comedi/drivers/amplc_pc236.h
index 37348f1d986f..91d6d9c065b5 100644
--- a/drivers/staging/comedi/drivers/amplc_pc236.h
+++ b/drivers/staging/comedi/drivers/amplc_pc236.h
@@ -25,11 +25,8 @@
struct comedi_device;
-enum pc236_bustype { isa_bustype, pci_bustype };
-
struct pc236_board {
const char *name;
- enum pc236_bustype bustype;
void (*intr_update_cb)(struct comedi_device *dev, bool enable);
bool (*intr_chk_clr_cb)(struct comedi_device *dev);
};
diff --git a/drivers/staging/comedi/drivers/amplc_pci236.c b/drivers/staging/comedi/drivers/amplc_pci236.c
index a7e7a6f13394..436aebaf7621 100644
--- a/drivers/staging/comedi/drivers/amplc_pci236.c
+++ b/drivers/staging/comedi/drivers/amplc_pci236.c
@@ -90,7 +90,6 @@ static const struct pc236_board pc236_pci_board = {
.name = "pci236",
.intr_update_cb = pci236_intr_update_cb,
.intr_chk_clr_cb = pci236_intr_chk_clr_cb,
- .bustype = pci_bustype,
};
static int pci236_auto_attach(struct comedi_device *dev,