mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2026-04-29 05:52:38 -04:00
staging: comedi: adv_pci1723: 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: H Hartley Sweeten <hsweeten@visionengravers.com> Cc: Ian Abbott <abbotti@mev.co.uk> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
3dbd666ca4
commit
cc04c8a5fc
@@ -302,11 +302,7 @@ static struct pci_dev *pci1723_find_pci_dev(struct comedi_device *dev,
|
||||
}
|
||||
if (pcidev->vendor != PCI_VENDOR_ID_ADVANTECH)
|
||||
continue;
|
||||
/*
|
||||
* Look for device that isn't in use.
|
||||
* Enable PCI device and request regions.
|
||||
*/
|
||||
if (comedi_pci_enable(pcidev, "adv_pci1723"))
|
||||
if (pci_is_enabled(pcidev))
|
||||
continue;
|
||||
return pcidev;
|
||||
}
|
||||
@@ -335,6 +331,10 @@ static int pci1723_attach(struct comedi_device *dev,
|
||||
if (!devpriv->pcidev)
|
||||
return -EIO;
|
||||
|
||||
ret = comedi_pci_enable(devpriv->pcidev, "adv_pci1723");
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
dev->iobase = pci_resource_start(devpriv->pcidev, 2);
|
||||
|
||||
dev->board_name = this_board->name;
|
||||
|
||||
Reference in New Issue
Block a user