mirror of
https://github.com/edk2-porting/linux-next.git
synced 2024-12-15 16:53:54 +08:00
PCI: make no_pci_devices() use the pci_bus_type list
no_pci_devices() should use the driver core list of PCI devices, not our "separate" one. Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
This commit is contained in:
parent
1ba6ab11d8
commit
70308923d3
@ -22,16 +22,27 @@ EXPORT_SYMBOL(pci_root_buses);
|
|||||||
|
|
||||||
LIST_HEAD(pci_devices);
|
LIST_HEAD(pci_devices);
|
||||||
|
|
||||||
|
|
||||||
|
static int find_anything(struct device *dev, void *data)
|
||||||
|
{
|
||||||
|
return 1;
|
||||||
|
}
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Some device drivers need know if pci is initiated.
|
* Some device drivers need know if pci is initiated.
|
||||||
* Basically, we think pci is not initiated when there
|
* Basically, we think pci is not initiated when there
|
||||||
* is no device in list of pci_devices.
|
* is no device to be found on the pci_bus_type.
|
||||||
*/
|
*/
|
||||||
int no_pci_devices(void)
|
int no_pci_devices(void)
|
||||||
{
|
{
|
||||||
return list_empty(&pci_devices);
|
struct device *dev;
|
||||||
}
|
int no_devices;
|
||||||
|
|
||||||
|
dev = bus_find_device(&pci_bus_type, NULL, NULL, find_anything);
|
||||||
|
no_devices = (dev == NULL);
|
||||||
|
put_device(dev);
|
||||||
|
return no_devices;
|
||||||
|
}
|
||||||
EXPORT_SYMBOL(no_pci_devices);
|
EXPORT_SYMBOL(no_pci_devices);
|
||||||
|
|
||||||
#ifdef HAVE_PCI_LEGACY
|
#ifdef HAVE_PCI_LEGACY
|
||||||
|
Loading…
Reference in New Issue
Block a user