staging: comedi: adl_pci9118: remove 'device_id' from boardinfo
authorH Hartley Sweeten <hsweeten@visionengravers.com>
Thu, 4 Sep 2014 17:39:35 +0000 (10:39 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 8 Sep 2014 20:54:06 +0000 (13:54 -0700)
This member of the boardinfo is the same for all entries. Remove it.

Signed-off-by: H Hartley Sweeten <hsweeten@visionengravers.com>
Reviewed-by: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
drivers/staging/comedi/drivers/adl_pci9118.c

index dc0d0cb..6471f2c 100644 (file)
@@ -236,7 +236,6 @@ enum pci9118_boardid {
 
 struct boardtype {
        const char *name;               /* board name */
-       int device_id;                  /* PCI device ID of card */
        unsigned int ai_is_16bit:1;
        unsigned int is_hg:1;
 };
@@ -244,16 +243,13 @@ struct boardtype {
 static const struct boardtype boardtypes[] = {
        [BOARD_PCI9118DG] = {
                .name           = "pci9118dg",
-               .device_id      = 0x80d9,
        },
        [BOARD_PCI9118HG] = {
                .name           = "pci9118hg",
-               .device_id      = 0x80d9,
                .is_hg          = 1,
        },
        [BOARD_PCI9118HR] = {
                .name           = "pci9118hr",
-               .device_id      = 0x80d9,
                .ai_is_16bit    = 1,
        },
 };
@@ -1743,7 +1739,6 @@ static int pci9118_reset(struct comedi_device *dev)
 static struct pci_dev *pci9118_find_pci(struct comedi_device *dev,
                                        struct comedi_devconfig *it)
 {
-       const struct boardtype *this_board = comedi_board(dev);
        struct pci_dev *pcidev = NULL;
        int bus = it->options[0];
        int slot = it->options[1];
@@ -1751,7 +1746,7 @@ static struct pci_dev *pci9118_find_pci(struct comedi_device *dev,
        for_each_pci_dev(pcidev) {
                if (pcidev->vendor != PCI_VENDOR_ID_AMCC)
                        continue;
-               if (pcidev->device != this_board->device_id)
+               if (pcidev->device != 0x80d9)
                        continue;
                if (bus || slot) {
                        /* requested particular bus/slot */