OSDN Git Service

staging: comedi: amplc_pc236, amplc_pci236: get rid of bustype
authorIan Abbott <abbotti@mev.co.uk>
Mon, 28 Jul 2014 12:09:35 +0000 (13:09 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 30 Jul 2014 23:48:42 +0000 (16:48 -0700)
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>
drivers/staging/comedi/drivers/amplc_pc236.c
drivers/staging/comedi/drivers/amplc_pc236.h
drivers/staging/comedi/drivers/amplc_pci236.c

index b95b877..875cc19 100644 (file)
@@ -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,
        },
 };
 
index 37348f1..91d6d9c 100644 (file)
 
 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);
 };
index a7e7a6f..436aeba 100644 (file)
@@ -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,