Commit 5f5d1b9a authored by H Hartley Sweeten's avatar H Hartley Sweeten Committed by Greg Kroah-Hartman

staging: comedi: adv_pci1710: move comedi_pci_enable() into the attach

Use pci_is_enabled() in the "find pci device" function to determine if
the found pci device is not in use and move the comedi_pci_enable() call
into the attach.
Signed-off-by: default avatarH Hartley Sweeten <hsweeten@visionengravers.com>
Cc: Ian Abbott <abbotti@mev.co.uk>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent 5aa53d5f
...@@ -1350,6 +1350,8 @@ static struct pci_dev *pci1710_find_pci_dev(struct comedi_device *dev, ...@@ -1350,6 +1350,8 @@ static struct pci_dev *pci1710_find_pci_dev(struct comedi_device *dev,
} }
if (pcidev->vendor != PCI_VENDOR_ID_ADVANTECH) if (pcidev->vendor != PCI_VENDOR_ID_ADVANTECH)
continue; continue;
if (pci_is_enabled(pcidev))
continue;
if (strcmp(this_board->name, DRV_NAME) == 0) { if (strcmp(this_board->name, DRV_NAME) == 0) {
for (i = 0; i < ARRAY_SIZE(boardtypes); ++i) { for (i = 0; i < ARRAY_SIZE(boardtypes); ++i) {
...@@ -1364,15 +1366,6 @@ static struct pci_dev *pci1710_find_pci_dev(struct comedi_device *dev, ...@@ -1364,15 +1366,6 @@ static struct pci_dev *pci1710_find_pci_dev(struct comedi_device *dev,
if (pcidev->device != boardtypes[board_index].device_id) if (pcidev->device != boardtypes[board_index].device_id)
continue; continue;
} }
/*
* Look for device that isn't in use.
* Enable PCI device and request regions.
*/
if (comedi_pci_enable(pcidev, DRV_NAME)) {
continue;
}
/* fixup board_ptr in case we were using the dummy entry with the driver name */
dev->board_ptr = &boardtypes[board_index]; dev->board_ptr = &boardtypes[board_index];
return pcidev; return pcidev;
} }
...@@ -1399,6 +1392,10 @@ static int pci1710_attach(struct comedi_device *dev, ...@@ -1399,6 +1392,10 @@ static int pci1710_attach(struct comedi_device *dev,
if (!devpriv->pcidev) if (!devpriv->pcidev)
return -EIO; return -EIO;
ret = comedi_pci_enable(devpriv->pcidev, DRV_NAME);
if (ret)
return ret;
dev->iobase = pci_resource_start(devpriv->pcidev, 2); dev->iobase = pci_resource_start(devpriv->pcidev, 2);
irq = devpriv->pcidev->irq; irq = devpriv->pcidev->irq;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment