mirror of
https://xff.cz/git/u-boot/
synced 2025-09-01 16:52:14 +02:00
dm: pci: Use driver model PCI API in auto-config
At present we are using legacy functions even in the auto-configuration code used by driver model. Add a new pci_auto.c version which uses the correct API. Create a new pci_internal.h header to hold functions that are used within the PCI subsystem, but are not exported to other drivers. Signed-off-by: Simon Glass <sjg@chromium.org> Reviewed-by: Bin Meng <bmeng.cn@gmail.com> Tested-by: Bin Meng <bmeng.cn@gmail.com>
This commit is contained in:
@@ -995,7 +995,7 @@ int pci_find_device_id(struct pci_device_id *ids, int index,
|
||||
* @bdf: PCI bus address to scan (PCI_BUS(bdf) is the bus number)
|
||||
* @return 0 if OK, -ve on error
|
||||
*/
|
||||
int dm_pci_hose_probe_bus(struct pci_controller *hose, pci_dev_t bdf);
|
||||
int dm_pci_hose_probe_bus(struct udevice *bus);
|
||||
|
||||
/**
|
||||
* pci_bus_read_config() - Read a configuration value from a device
|
||||
|
Reference in New Issue
Block a user