diff options
author | Lorenzo Pieralisi | 2017-06-28 22:13:55 +0200 |
---|---|---|
committer | Bjorn Helgaas | 2017-06-28 22:13:55 +0200 |
commit | 97ad2bdcbe8598a69ee1f372ed6c0fbdb2869218 (patch) | |
tree | b35c25eb4093c0d19f7b3fa6d8c17c0ff2fabdb5 /arch/arm/mach-iop13xx/pci.h | |
parent | PCI: Make pci_register_host_bridge() PCI core internal (diff) | |
download | kernel-qcow2-linux-97ad2bdcbe8598a69ee1f372ed6c0fbdb2869218.tar.gz kernel-qcow2-linux-97ad2bdcbe8598a69ee1f372ed6c0fbdb2869218.tar.xz kernel-qcow2-linux-97ad2bdcbe8598a69ee1f372ed6c0fbdb2869218.zip |
ARM/PCI: Convert PCI scan API to pci_scan_root_bus_bridge()
The introduction of pci_scan_root_bus_bridge() provides a PCI core API to
scan a PCI root bus backed by an already initialized struct pci_host_bridge
object, which simplifies the bus scan interface and makes the PCI scan root
bus interface easier to generalize as members are added to the struct
pci_host_bridge.
Convert ARM bios32 code to pci_scan_root_bus_bridge() to improve the PCI
root bus scanning interface.
Signed-off-by: Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>
[bhelgaas: fold in warning fix from Arnd Bergmann <arnd@arndb.de>:
http://lkml.kernel.org/r/20170621215323.3921382-1-arnd@arndb.de]
[bhelgaas: set bridge->ops for mv78xx0]
[bhelgaas: fold in fixes from Lorenzo Pieralisi <lorenzo.pieralisi@arm.com>:
http://lkml.kernel.org/r/20170701135457.GB8977@red-moon]
Signed-off-by: Bjorn Helgaas <bhelgaas@google.com>
Cc: Jason Cooper <jason@lakedaemon.net>
Cc: Russell King <linux@armlinux.org.uk>
Cc: Andrew Lunn <andrew@lunn.ch>
Diffstat (limited to 'arch/arm/mach-iop13xx/pci.h')
-rw-r--r-- | arch/arm/mach-iop13xx/pci.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/arch/arm/mach-iop13xx/pci.h b/arch/arm/mach-iop13xx/pci.h index 71b9c57e1fde..8dc343cb887a 100644 --- a/arch/arm/mach-iop13xx/pci.h +++ b/arch/arm/mach-iop13xx/pci.h @@ -11,9 +11,10 @@ extern size_t iop13xx_atue_mem_size; extern size_t iop13xx_atux_mem_size; struct pci_sys_data; +struct pci_host_bridge; struct hw_pci; int iop13xx_pci_setup(int nr, struct pci_sys_data *sys); -struct pci_bus *iop13xx_scan_bus(int nr, struct pci_sys_data *); +int iop13xx_scan_bus(int nr, struct pci_host_bridge *bridge); void iop13xx_atu_select(struct hw_pci *plat_pci); void iop13xx_pci_init(void); void iop13xx_map_pci_memory(void); |