Commit 5b64d2cc authored by Daniel Axtens's avatar Daniel Axtens Committed by Michael Ellerman

powerpc/pci: Export symbols for CXL

Export pcibios_claim_one_bus, pcibios_scan_phb and pcibios_alloc_controller.

These will be used by the CXL driver.
Signed-off-by: default avatarDaniel Axtens <dja@axtens.net>
Signed-off-by: default avatarMichael Ellerman <mpe@ellerman.id.au>
parent 85a97da9
...@@ -89,6 +89,7 @@ struct pci_controller *pcibios_alloc_controller(struct device_node *dev) ...@@ -89,6 +89,7 @@ struct pci_controller *pcibios_alloc_controller(struct device_node *dev)
#endif #endif
return phb; return phb;
} }
EXPORT_SYMBOL_GPL(pcibios_alloc_controller);
void pcibios_free_controller(struct pci_controller *phb) void pcibios_free_controller(struct pci_controller *phb)
{ {
...@@ -1447,6 +1448,7 @@ void pcibios_claim_one_bus(struct pci_bus *bus) ...@@ -1447,6 +1448,7 @@ void pcibios_claim_one_bus(struct pci_bus *bus)
list_for_each_entry(child_bus, &bus->children, node) list_for_each_entry(child_bus, &bus->children, node)
pcibios_claim_one_bus(child_bus); pcibios_claim_one_bus(child_bus);
} }
EXPORT_SYMBOL_GPL(pcibios_claim_one_bus);
/* pcibios_finish_adding_to_bus /* pcibios_finish_adding_to_bus
...@@ -1680,6 +1682,7 @@ void pcibios_scan_phb(struct pci_controller *hose) ...@@ -1680,6 +1682,7 @@ void pcibios_scan_phb(struct pci_controller *hose)
pcie_bus_configure_settings(child); pcie_bus_configure_settings(child);
} }
} }
EXPORT_SYMBOL_GPL(pcibios_scan_phb);
static void fixup_hide_host_resource_fsl(struct pci_dev *dev) static void fixup_hide_host_resource_fsl(struct pci_dev *dev)
{ {
......
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