staging: comedi: addi_apci_3120: cleanup addi_find_boardinfo()
authorH Hartley Sweeten <hartleys@visionengravers.com>
Fri, 2 Nov 2012 00:31:10 +0000 (17:31 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Fri, 2 Nov 2012 18:23:51 +0000 (11:23 -0700)
This driver uses the comedi PCI auto attach mechanism and the comedi
core does not use the boardinfo during the attach.

Now that this driver has the attach separated from addi_common.c we
can remove passing the boardinfo in the comedi_driver and cleanup
the code that finds the boardinfo.

Also, rename addi_find_boardinfo() so it has namespace associated
with this driver.

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

index 9b9ca004635cf0b73bc0da8b94e15c622e2293d2..da3112624b7287db87b4d1f24adfbe6b08c4a8f8 100644 (file)
@@ -45,19 +45,17 @@ static irqreturn_t v_ADDI_Interrupt(int irq, void *d)
        return IRQ_RETVAL(1);
 }
 
-static const void *addi_find_boardinfo(struct comedi_device *dev,
-                                      struct pci_dev *pcidev)
+static const void *apci3120_find_boardinfo(struct comedi_device *dev,
+                                          struct pci_dev *pcidev)
 {
-       const void *p = dev->driver->board_name;
        const struct addi_board *this_board;
        int i;
 
-       for (i = 0; i < dev->driver->num_names; i++) {
-               this_board = p;
+       for (i = 0; i < ARRAY_SIZE(apci3120_boardtypes); i++) {
+               this_board = &apci3120_boardtypes[i];
                if (this_board->i_VendorId == pcidev->vendor &&
                    this_board->i_DeviceId == pcidev->device)
                        return this_board;
-               p += dev->driver->offset;
        }
        return NULL;
 }
@@ -70,7 +68,7 @@ static int apci3120_attach_pci(struct comedi_device *dev,
        struct comedi_subdevice *s;
        int ret, pages, i;
 
-       this_board = addi_find_boardinfo(dev, pcidev);
+       this_board = apci3120_find_boardinfo(dev, pcidev);
        if (!this_board)
                return -ENODEV;
        dev->board_ptr = this_board;
@@ -249,9 +247,6 @@ static struct comedi_driver apci3120_driver = {
        .module         = THIS_MODULE,
        .attach_pci     = apci3120_attach_pci,
        .detach         = apci3120_detach,
-       .num_names      = ARRAY_SIZE(apci3120_boardtypes),
-       .board_name     = &apci3120_boardtypes[0].pc_DriverName,
-       .offset         = sizeof(struct addi_board),
 };
 
 static int __devinit apci3120_pci_probe(struct pci_dev *dev,
This page took 0.026028 seconds and 5 git commands to generate.