aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-powerpc/pci-bridge.h
diff options
context:
space:
mode:
authorKumar Gala <galak@kernel.crashing.org>2007-06-27 02:17:57 -0400
committerKumar Gala <galak@kernel.crashing.org>2007-06-29 02:58:37 -0400
commit5516b540e98de6f7474a4e7149470ad6a0bbc54a (patch)
tree9eb57336d892eb8c0e76584285030868df82f626 /include/asm-powerpc/pci-bridge.h
parent6a506238b33efd93e60c1585d654b37e292183de (diff)
[POWERPC] Use global_number in ppc32 pci_controller
Make the pci_controller struct use global_number for the PHB domain number instead of index to match what ppc64 does and reuse its pci_domain_nr code. Introduced a pci-common.c to handle shared code between ppc32 & ppc64. Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'include/asm-powerpc/pci-bridge.h')
-rw-r--r--include/asm-powerpc/pci-bridge.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/asm-powerpc/pci-bridge.h b/include/asm-powerpc/pci-bridge.h
index e2b2b6b7b6b8..80cfb4a75053 100644
--- a/include/asm-powerpc/pci-bridge.h
+++ b/include/asm-powerpc/pci-bridge.h
@@ -21,7 +21,6 @@ extern struct pci_controller* pci_bus_to_hose(int bus);
21struct pci_controller { 21struct pci_controller {
22 struct pci_bus *bus; 22 struct pci_bus *bus;
23 void *arch_data; 23 void *arch_data;
24 int index; /* PCI domain number */
25 struct pci_controller *next; 24 struct pci_controller *next;
26 struct device *parent; 25 struct device *parent;
27 26
@@ -60,6 +59,7 @@ struct pci_controller {
60 */ 59 */
61 struct resource io_resource; 60 struct resource io_resource;
62 struct resource mem_resources[3]; 61 struct resource mem_resources[3];
62 int global_number; /* PCI domain number */
63}; 63};
64 64
65static inline struct pci_controller *pci_bus_to_host(struct pci_bus *bus) 65static inline struct pci_controller *pci_bus_to_host(struct pci_bus *bus)