aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-powerpc/pci.h
diff options
context:
space:
mode:
authorBenjamin Herrenschmidt <benh@kernel.crashing.org>2007-12-19 22:54:51 -0500
committerPaul Mackerras <paulus@samba.org>2007-12-20 00:18:09 -0500
commitbf5e2ba28f24f82a64524ef4772c9ebe12e2cd2a (patch)
treef35c139d124a9276b71260c13c8bddf0aa02b4d7 /include/asm-powerpc/pci.h
parentfe2d338cdcc628e0abdb4f70570a7fa864c617db (diff)
[POWERPC] Merge PCI resource fixups
The PCI code in 32 and 64 bits fixes up resources differently. 32 bits uses a header quirk plus handles bridges in pcibios_fixup_bus() while 64 bits does things in various places depending on whether you are using OF probing, using PCI hotplug, etc... This merges those by basically using the 32 bits approach for both, with various tweaks to make 64 bits work with the new approach. Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org> Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'include/asm-powerpc/pci.h')
-rw-r--r--include/asm-powerpc/pci.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/include/asm-powerpc/pci.h b/include/asm-powerpc/pci.h
index 2883f566709d..9899d893c162 100644
--- a/include/asm-powerpc/pci.h
+++ b/include/asm-powerpc/pci.h
@@ -196,9 +196,6 @@ static inline struct resource *pcibios_select_root(struct pci_dev *pdev,
196 return root; 196 return root;
197} 197}
198 198
199extern void pcibios_fixup_device_resources(struct pci_dev *dev,
200 struct pci_bus *bus);
201
202extern void pcibios_setup_new_device(struct pci_dev *dev); 199extern void pcibios_setup_new_device(struct pci_dev *dev);
203 200
204extern void pcibios_claim_one_bus(struct pci_bus *b); 201extern void pcibios_claim_one_bus(struct pci_bus *b);
@@ -226,5 +223,8 @@ extern void pci_resource_to_user(const struct pci_dev *dev, int bar,
226 const struct resource *rsrc, 223 const struct resource *rsrc,
227 resource_size_t *start, resource_size_t *end); 224 resource_size_t *start, resource_size_t *end);
228 225
226extern void pcibios_do_bus_setup(struct pci_bus *bus);
227extern void pcibios_fixup_of_probed_bus(struct pci_bus *bus);
228
229#endif /* __KERNEL__ */ 229#endif /* __KERNEL__ */
230#endif /* __ASM_POWERPC_PCI_H */ 230#endif /* __ASM_POWERPC_PCI_H */