]> git.openfabrics.org - ~shefty/rdma-dev.git/commitdiff
staging: comedi: addi_apci_1500: set board_ptr before calling addi_auto_attach()
authorH Hartley Sweeten <hsweeten@visionengravers.com>
Tue, 5 Mar 2013 17:24:00 +0000 (10:24 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Mon, 11 Mar 2013 17:05:22 +0000 (10:05 -0700)
This driver only supports a single PCI device. If we set the
dev->board_ptr before calling addi_auto_attach() we remove
the need for the common code to search for the boardinfo.

Since the search is not done we can remove the unnecessary
board information from the comedi_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_1500.c

index c945a2aef9e3f92a6c577b2e67e98ef8190c9613..24c859088bc1c7c66374972a9421044226b4e92b 100644 (file)
@@ -39,14 +39,19 @@ static const struct addi_board apci1500_boardtypes[] = {
        },
 };
 
+static int apci1500_auto_attach(struct comedi_device *dev,
+                               unsigned long context)
+{
+       dev->board_ptr = &apci1500_boardtypes[0];
+
+       return addi_auto_attach(dev, context);
+}
+
 static struct comedi_driver apci1500_driver = {
        .driver_name    = "addi_apci_1500",
        .module         = THIS_MODULE,
-       .auto_attach    = addi_auto_attach,
+       .auto_attach    = apci1500_auto_attach,
        .detach         = i_ADDI_Detach,
-       .num_names      = ARRAY_SIZE(apci1500_boardtypes),
-       .board_name     = &apci1500_boardtypes[0].pc_DriverName,
-       .offset         = sizeof(struct addi_board),
 };
 
 static int apci1500_pci_probe(struct pci_dev *dev,