diff options
Diffstat (limited to 'arch/powerpc/platforms')
21 files changed, 28 insertions, 30 deletions
diff --git a/arch/powerpc/platforms/82xx/mpc82xx_ads.c b/arch/powerpc/platforms/82xx/mpc82xx_ads.c index 47cb09f08052..dc16bb4422ac 100644 --- a/arch/powerpc/platforms/82xx/mpc82xx_ads.c +++ b/arch/powerpc/platforms/82xx/mpc82xx_ads.c | |||
@@ -515,7 +515,7 @@ static int m82xx_pci_exclude_device(u_char bus, u_char devfn) | |||
515 | return PCIBIOS_SUCCESSFUL; | 515 | return PCIBIOS_SUCCESSFUL; |
516 | } | 516 | } |
517 | 517 | ||
518 | void __init add_bridge(struct device_node *np) | 518 | static void __init mpc82xx_add_bridge(struct device_node *np) |
519 | { | 519 | { |
520 | int len; | 520 | int len; |
521 | struct pci_controller *hose; | 521 | struct pci_controller *hose; |
@@ -584,7 +584,7 @@ static void __init mpc82xx_ads_setup_arch(void) | |||
584 | #ifdef CONFIG_PCI | 584 | #ifdef CONFIG_PCI |
585 | ppc_md.pci_exclude_device = m82xx_pci_exclude_device; | 585 | ppc_md.pci_exclude_device = m82xx_pci_exclude_device; |
586 | for (np = NULL; (np = of_find_node_by_type(np, "pci")) != NULL;) | 586 | for (np = NULL; (np = of_find_node_by_type(np, "pci")) != NULL;) |
587 | add_bridge(np); | 587 | mpc82xx_add_bridge(np); |
588 | 588 | ||
589 | of_node_put(np); | 589 | of_node_put(np); |
590 | #endif | 590 | #endif |
diff --git a/arch/powerpc/platforms/83xx/mpc8313_rdb.c b/arch/powerpc/platforms/83xx/mpc8313_rdb.c index 96970ac887ee..ecf34fac8372 100644 --- a/arch/powerpc/platforms/83xx/mpc8313_rdb.c +++ b/arch/powerpc/platforms/83xx/mpc8313_rdb.c | |||
@@ -49,7 +49,7 @@ static void __init mpc8313_rdb_setup_arch(void) | |||
49 | 49 | ||
50 | #ifdef CONFIG_PCI | 50 | #ifdef CONFIG_PCI |
51 | for (np = NULL; (np = of_find_node_by_type(np, "pci")) != NULL;) | 51 | for (np = NULL; (np = of_find_node_by_type(np, "pci")) != NULL;) |
52 | add_bridge(np); | 52 | mpc83xx_add_bridge(np); |
53 | 53 | ||
54 | ppc_md.pci_exclude_device = mpc83xx_exclude_device; | 54 | ppc_md.pci_exclude_device = mpc83xx_exclude_device; |
55 | #endif | 55 | #endif |
diff --git a/arch/powerpc/platforms/83xx/mpc832x_mds.c b/arch/powerpc/platforms/83xx/mpc832x_mds.c index 94843ed52a93..55e8079510e3 100644 --- a/arch/powerpc/platforms/83xx/mpc832x_mds.c +++ b/arch/powerpc/platforms/83xx/mpc832x_mds.c | |||
@@ -80,7 +80,7 @@ static void __init mpc832x_sys_setup_arch(void) | |||
80 | 80 | ||
81 | #ifdef CONFIG_PCI | 81 | #ifdef CONFIG_PCI |
82 | for (np = NULL; (np = of_find_node_by_type(np, "pci")) != NULL;) | 82 | for (np = NULL; (np = of_find_node_by_type(np, "pci")) != NULL;) |
83 | add_bridge(np); | 83 | mpc83xx_add_bridge(np); |
84 | ppc_md.pci_exclude_device = mpc83xx_exclude_device; | 84 | ppc_md.pci_exclude_device = mpc83xx_exclude_device; |
85 | #endif | 85 | #endif |
86 | 86 | ||
diff --git a/arch/powerpc/platforms/83xx/mpc832x_rdb.c b/arch/powerpc/platforms/83xx/mpc832x_rdb.c index 3db68b73fc32..8b790d4d0741 100644 --- a/arch/powerpc/platforms/83xx/mpc832x_rdb.c +++ b/arch/powerpc/platforms/83xx/mpc832x_rdb.c | |||
@@ -53,7 +53,7 @@ static void __init mpc832x_rdb_setup_arch(void) | |||
53 | 53 | ||
54 | #ifdef CONFIG_PCI | 54 | #ifdef CONFIG_PCI |
55 | for (np = NULL; (np = of_find_node_by_type(np, "pci")) != NULL;) | 55 | for (np = NULL; (np = of_find_node_by_type(np, "pci")) != NULL;) |
56 | add_bridge(np); | 56 | mpc83xx_add_bridge(np); |
57 | 57 | ||
58 | ppc_md.pci_exclude_device = mpc83xx_exclude_device; | 58 | ppc_md.pci_exclude_device = mpc83xx_exclude_device; |
59 | #endif | 59 | #endif |
diff --git a/arch/powerpc/platforms/83xx/mpc834x_itx.c b/arch/powerpc/platforms/83xx/mpc834x_itx.c index 40a01947d684..120c5d25c709 100644 --- a/arch/powerpc/platforms/83xx/mpc834x_itx.c +++ b/arch/powerpc/platforms/83xx/mpc834x_itx.c | |||
@@ -59,7 +59,7 @@ static void __init mpc834x_itx_setup_arch(void) | |||
59 | 59 | ||
60 | #ifdef CONFIG_PCI | 60 | #ifdef CONFIG_PCI |
61 | for (np = NULL; (np = of_find_node_by_type(np, "pci")) != NULL;) | 61 | for (np = NULL; (np = of_find_node_by_type(np, "pci")) != NULL;) |
62 | add_bridge(np); | 62 | mpc83xx_add_bridge(np); |
63 | 63 | ||
64 | ppc_md.pci_exclude_device = mpc83xx_exclude_device; | 64 | ppc_md.pci_exclude_device = mpc83xx_exclude_device; |
65 | #endif | 65 | #endif |
diff --git a/arch/powerpc/platforms/83xx/mpc834x_mds.c b/arch/powerpc/platforms/83xx/mpc834x_mds.c index 10394b2d7e7a..d64d5a5ae00c 100644 --- a/arch/powerpc/platforms/83xx/mpc834x_mds.c +++ b/arch/powerpc/platforms/83xx/mpc834x_mds.c | |||
@@ -129,7 +129,7 @@ static void __init mpc834x_mds_setup_arch(void) | |||
129 | 129 | ||
130 | #ifdef CONFIG_PCI | 130 | #ifdef CONFIG_PCI |
131 | for (np = NULL; (np = of_find_node_by_type(np, "pci")) != NULL;) | 131 | for (np = NULL; (np = of_find_node_by_type(np, "pci")) != NULL;) |
132 | add_bridge(np); | 132 | mpc83xx_add_bridge(np); |
133 | 133 | ||
134 | ppc_md.pci_exclude_device = mpc83xx_exclude_device; | 134 | ppc_md.pci_exclude_device = mpc83xx_exclude_device; |
135 | #endif | 135 | #endif |
diff --git a/arch/powerpc/platforms/83xx/mpc836x_mds.c b/arch/powerpc/platforms/83xx/mpc836x_mds.c index bceeff8bbfd2..bf3be3741129 100644 --- a/arch/powerpc/platforms/83xx/mpc836x_mds.c +++ b/arch/powerpc/platforms/83xx/mpc836x_mds.c | |||
@@ -86,7 +86,7 @@ static void __init mpc836x_mds_setup_arch(void) | |||
86 | 86 | ||
87 | #ifdef CONFIG_PCI | 87 | #ifdef CONFIG_PCI |
88 | for (np = NULL; (np = of_find_node_by_type(np, "pci")) != NULL;) | 88 | for (np = NULL; (np = of_find_node_by_type(np, "pci")) != NULL;) |
89 | add_bridge(np); | 89 | mpc83xx_add_bridge(np); |
90 | ppc_md.pci_exclude_device = mpc83xx_exclude_device; | 90 | ppc_md.pci_exclude_device = mpc83xx_exclude_device; |
91 | #endif | 91 | #endif |
92 | 92 | ||
diff --git a/arch/powerpc/platforms/83xx/mpc83xx.h b/arch/powerpc/platforms/83xx/mpc83xx.h index 9cd03b59c8f4..9bd85f5e9a56 100644 --- a/arch/powerpc/platforms/83xx/mpc83xx.h +++ b/arch/powerpc/platforms/83xx/mpc83xx.h | |||
@@ -27,7 +27,7 @@ | |||
27 | * mpc83xx_* files. Mostly for use by mpc83xx_setup | 27 | * mpc83xx_* files. Mostly for use by mpc83xx_setup |
28 | */ | 28 | */ |
29 | 29 | ||
30 | extern int add_bridge(struct device_node *dev); | 30 | extern int mpc83xx_add_bridge(struct device_node *dev); |
31 | extern int mpc83xx_exclude_device(u_char bus, u_char devfn); | 31 | extern int mpc83xx_exclude_device(u_char bus, u_char devfn); |
32 | extern void mpc83xx_restart(char *cmd); | 32 | extern void mpc83xx_restart(char *cmd); |
33 | extern long mpc83xx_time_init(void); | 33 | extern long mpc83xx_time_init(void); |
diff --git a/arch/powerpc/platforms/83xx/pci.c b/arch/powerpc/platforms/83xx/pci.c index 774457d09e94..1752d4577aaf 100644 --- a/arch/powerpc/platforms/83xx/pci.c +++ b/arch/powerpc/platforms/83xx/pci.c | |||
@@ -45,7 +45,7 @@ int mpc83xx_exclude_device(u_char bus, u_char devfn) | |||
45 | return PCIBIOS_SUCCESSFUL; | 45 | return PCIBIOS_SUCCESSFUL; |
46 | } | 46 | } |
47 | 47 | ||
48 | int __init add_bridge(struct device_node *dev) | 48 | int __init mpc83xx_add_bridge(struct device_node *dev) |
49 | { | 49 | { |
50 | int len; | 50 | int len; |
51 | struct pci_controller *hose; | 51 | struct pci_controller *hose; |
diff --git a/arch/powerpc/platforms/85xx/mpc85xx.h b/arch/powerpc/platforms/85xx/mpc85xx.h index 83415db33378..7286ffac2c1d 100644 --- a/arch/powerpc/platforms/85xx/mpc85xx.h +++ b/arch/powerpc/platforms/85xx/mpc85xx.h | |||
@@ -15,4 +15,4 @@ | |||
15 | */ | 15 | */ |
16 | 16 | ||
17 | extern void mpc85xx_restart(char *); | 17 | extern void mpc85xx_restart(char *); |
18 | extern int add_bridge(struct device_node *dev); | 18 | extern int mpc85xx_add_bridge(struct device_node *dev); |
diff --git a/arch/powerpc/platforms/85xx/mpc85xx_ads.c b/arch/powerpc/platforms/85xx/mpc85xx_ads.c index 5d27621f0927..a4995de6e737 100644 --- a/arch/powerpc/platforms/85xx/mpc85xx_ads.c +++ b/arch/powerpc/platforms/85xx/mpc85xx_ads.c | |||
@@ -241,7 +241,7 @@ static void __init mpc85xx_ads_setup_arch(void) | |||
241 | 241 | ||
242 | #ifdef CONFIG_PCI | 242 | #ifdef CONFIG_PCI |
243 | for (np = NULL; (np = of_find_node_by_type(np, "pci")) != NULL;) | 243 | for (np = NULL; (np = of_find_node_by_type(np, "pci")) != NULL;) |
244 | add_bridge(np); | 244 | mpc85xx_add_bridge(np); |
245 | ppc_md.pci_exclude_device = mpc85xx_exclude_device; | 245 | ppc_md.pci_exclude_device = mpc85xx_exclude_device; |
246 | #endif | 246 | #endif |
247 | } | 247 | } |
diff --git a/arch/powerpc/platforms/85xx/mpc85xx_cds.c b/arch/powerpc/platforms/85xx/mpc85xx_cds.c index 1490eb3ce0d3..40592540ec77 100644 --- a/arch/powerpc/platforms/85xx/mpc85xx_cds.c +++ b/arch/powerpc/platforms/85xx/mpc85xx_cds.c | |||
@@ -257,7 +257,7 @@ static void __init mpc85xx_cds_setup_arch(void) | |||
257 | 257 | ||
258 | #ifdef CONFIG_PCI | 258 | #ifdef CONFIG_PCI |
259 | for (np = NULL; (np = of_find_node_by_type(np, "pci")) != NULL;) | 259 | for (np = NULL; (np = of_find_node_by_type(np, "pci")) != NULL;) |
260 | add_bridge(np); | 260 | mpc85xx_add_bridge(np); |
261 | 261 | ||
262 | ppc_md.pcibios_fixup = mpc85xx_cds_pcibios_fixup; | 262 | ppc_md.pcibios_fixup = mpc85xx_cds_pcibios_fixup; |
263 | ppc_md.pci_exclude_device = mpc85xx_exclude_device; | 263 | ppc_md.pci_exclude_device = mpc85xx_exclude_device; |
diff --git a/arch/powerpc/platforms/85xx/mpc85xx_mds.c b/arch/powerpc/platforms/85xx/mpc85xx_mds.c index e3dddbfe66ff..7310818bcc23 100644 --- a/arch/powerpc/platforms/85xx/mpc85xx_mds.c +++ b/arch/powerpc/platforms/85xx/mpc85xx_mds.c | |||
@@ -100,7 +100,7 @@ static void __init mpc85xx_mds_setup_arch(void) | |||
100 | 100 | ||
101 | #ifdef CONFIG_PCI | 101 | #ifdef CONFIG_PCI |
102 | for (np = NULL; (np = of_find_node_by_type(np, "pci")) != NULL;) { | 102 | for (np = NULL; (np = of_find_node_by_type(np, "pci")) != NULL;) { |
103 | add_bridge(np); | 103 | mpc85xx_add_bridge(np); |
104 | } | 104 | } |
105 | of_node_put(np); | 105 | of_node_put(np); |
106 | #endif | 106 | #endif |
diff --git a/arch/powerpc/platforms/85xx/pci.c b/arch/powerpc/platforms/85xx/pci.c index 48f17e23d771..3c38ae4b76c7 100644 --- a/arch/powerpc/platforms/85xx/pci.c +++ b/arch/powerpc/platforms/85xx/pci.c | |||
@@ -36,7 +36,7 @@ | |||
36 | int mpc85xx_pci2_busno = 0; | 36 | int mpc85xx_pci2_busno = 0; |
37 | 37 | ||
38 | #ifdef CONFIG_PCI | 38 | #ifdef CONFIG_PCI |
39 | int __init add_bridge(struct device_node *dev) | 39 | int __init mpc85xx_add_bridge(struct device_node *dev) |
40 | { | 40 | { |
41 | int len; | 41 | int len; |
42 | struct pci_controller *hose; | 42 | struct pci_controller *hose; |
diff --git a/arch/powerpc/platforms/86xx/mpc86xx.h b/arch/powerpc/platforms/86xx/mpc86xx.h index 2834462590b8..dc2f6fdc8de4 100644 --- a/arch/powerpc/platforms/86xx/mpc86xx.h +++ b/arch/powerpc/platforms/86xx/mpc86xx.h | |||
@@ -15,7 +15,7 @@ | |||
15 | * mpc86xx_* files. Mostly for use by mpc86xx_setup(). | 15 | * mpc86xx_* files. Mostly for use by mpc86xx_setup(). |
16 | */ | 16 | */ |
17 | 17 | ||
18 | extern int add_bridge(struct device_node *dev); | 18 | extern int mpc86xx_add_bridge(struct device_node *dev); |
19 | 19 | ||
20 | extern int mpc86xx_exclude_device(u_char bus, u_char devfn); | 20 | extern int mpc86xx_exclude_device(u_char bus, u_char devfn); |
21 | 21 | ||
diff --git a/arch/powerpc/platforms/86xx/mpc86xx_hpcn.c b/arch/powerpc/platforms/86xx/mpc86xx_hpcn.c index 1051702c8d4f..23f3e1bbf861 100644 --- a/arch/powerpc/platforms/86xx/mpc86xx_hpcn.c +++ b/arch/powerpc/platforms/86xx/mpc86xx_hpcn.c | |||
@@ -364,7 +364,7 @@ mpc86xx_hpcn_setup_arch(void) | |||
364 | 364 | ||
365 | #ifdef CONFIG_PCI | 365 | #ifdef CONFIG_PCI |
366 | for (np = NULL; (np = of_find_node_by_type(np, "pci")) != NULL;) | 366 | for (np = NULL; (np = of_find_node_by_type(np, "pci")) != NULL;) |
367 | add_bridge(np); | 367 | mpc86xx_add_bridge(np); |
368 | 368 | ||
369 | ppc_md.pci_exclude_device = mpc86xx_exclude_device; | 369 | ppc_md.pci_exclude_device = mpc86xx_exclude_device; |
370 | #endif | 370 | #endif |
diff --git a/arch/powerpc/platforms/86xx/pci.c b/arch/powerpc/platforms/86xx/pci.c index 8235c562661f..c1d65fac690d 100644 --- a/arch/powerpc/platforms/86xx/pci.c +++ b/arch/powerpc/platforms/86xx/pci.c | |||
@@ -148,7 +148,7 @@ int mpc86xx_exclude_device(u_char bus, u_char devfn) | |||
148 | return PCIBIOS_SUCCESSFUL; | 148 | return PCIBIOS_SUCCESSFUL; |
149 | } | 149 | } |
150 | 150 | ||
151 | int __init add_bridge(struct device_node *dev) | 151 | int __init mpc86xx_add_bridge(struct device_node *dev) |
152 | { | 152 | { |
153 | int len; | 153 | int len; |
154 | struct pci_controller *hose; | 154 | struct pci_controller *hose; |
diff --git a/arch/powerpc/platforms/embedded6xx/linkstation.c b/arch/powerpc/platforms/embedded6xx/linkstation.c index b412f006a9c5..f3ae0a728158 100644 --- a/arch/powerpc/platforms/embedded6xx/linkstation.c +++ b/arch/powerpc/platforms/embedded6xx/linkstation.c | |||
@@ -54,7 +54,7 @@ static struct mtd_partition linkstation_physmap_partitions[] = { | |||
54 | }, | 54 | }, |
55 | }; | 55 | }; |
56 | 56 | ||
57 | static int __init add_bridge(struct device_node *dev) | 57 | static int __init linkstation_add_bridge(struct device_node *dev) |
58 | { | 58 | { |
59 | int len; | 59 | int len; |
60 | struct pci_controller *hose; | 60 | struct pci_controller *hose; |
@@ -92,7 +92,7 @@ static void __init linkstation_setup_arch(void) | |||
92 | 92 | ||
93 | /* Lookup PCI host bridges */ | 93 | /* Lookup PCI host bridges */ |
94 | for (np = NULL; (np = of_find_node_by_type(np, "pci")) != NULL;) | 94 | for (np = NULL; (np = of_find_node_by_type(np, "pci")) != NULL;) |
95 | add_bridge(np); | 95 | linkstation_add_bridge(np); |
96 | 96 | ||
97 | printk(KERN_INFO "BUFFALO Network Attached Storage Series\n"); | 97 | printk(KERN_INFO "BUFFALO Network Attached Storage Series\n"); |
98 | printk(KERN_INFO "(C) 2002-2005 BUFFALO INC.\n"); | 98 | printk(KERN_INFO "(C) 2002-2005 BUFFALO INC.\n"); |
diff --git a/arch/powerpc/platforms/maple/pci.c b/arch/powerpc/platforms/maple/pci.c index f357b9258875..fceaae40fe70 100644 --- a/arch/powerpc/platforms/maple/pci.c +++ b/arch/powerpc/platforms/maple/pci.c | |||
@@ -444,7 +444,7 @@ static void __init setup_u3_ht(struct pci_controller* hose) | |||
444 | u3_ht = hose; | 444 | u3_ht = hose; |
445 | } | 445 | } |
446 | 446 | ||
447 | static int __init add_bridge(struct device_node *dev) | 447 | static int __init maple_add_bridge(struct device_node *dev) |
448 | { | 448 | { |
449 | int len; | 449 | int len; |
450 | struct pci_controller *hose; | 450 | struct pci_controller *hose; |
@@ -541,7 +541,7 @@ void __init maple_pci_init(void) | |||
541 | continue; | 541 | continue; |
542 | if ((of_device_is_compatible(np, "u4-pcie") || | 542 | if ((of_device_is_compatible(np, "u4-pcie") || |
543 | of_device_is_compatible(np, "u3-agp")) && | 543 | of_device_is_compatible(np, "u3-agp")) && |
544 | add_bridge(np) == 0) | 544 | maple_add_bridge(np) == 0) |
545 | of_node_get(np); | 545 | of_node_get(np); |
546 | 546 | ||
547 | if (of_device_is_compatible(np, "u3-ht")) { | 547 | if (of_device_is_compatible(np, "u3-ht")) { |
@@ -553,7 +553,7 @@ void __init maple_pci_init(void) | |||
553 | 553 | ||
554 | /* Now setup the HyperTransport host if we found any | 554 | /* Now setup the HyperTransport host if we found any |
555 | */ | 555 | */ |
556 | if (ht && add_bridge(ht) != 0) | 556 | if (ht && maple_add_bridge(ht) != 0) |
557 | of_node_put(ht); | 557 | of_node_put(ht); |
558 | 558 | ||
559 | /* Setup the linkage between OF nodes and PHBs */ | 559 | /* Setup the linkage between OF nodes and PHBs */ |
diff --git a/arch/powerpc/platforms/pasemi/pci.c b/arch/powerpc/platforms/pasemi/pci.c index 5606f25760bc..ab1f5f62bcd8 100644 --- a/arch/powerpc/platforms/pasemi/pci.c +++ b/arch/powerpc/platforms/pasemi/pci.c | |||
@@ -132,7 +132,7 @@ static void __init setup_pa_pxp(struct pci_controller *hose) | |||
132 | hose->cfg_data = ioremap(0xe0000000, 0x10000000); | 132 | hose->cfg_data = ioremap(0xe0000000, 0x10000000); |
133 | } | 133 | } |
134 | 134 | ||
135 | static int __init add_bridge(struct device_node *dev) | 135 | static int __init pas_add_bridge(struct device_node *dev) |
136 | { | 136 | { |
137 | struct pci_controller *hose; | 137 | struct pci_controller *hose; |
138 | 138 | ||
@@ -167,7 +167,7 @@ void __init pas_pci_init(void) | |||
167 | } | 167 | } |
168 | 168 | ||
169 | for (np = NULL; (np = of_get_next_child(root, np)) != NULL;) | 169 | for (np = NULL; (np = of_get_next_child(root, np)) != NULL;) |
170 | if (np->name && !strcmp(np->name, "pxp") && !add_bridge(np)) | 170 | if (np->name && !strcmp(np->name, "pxp") && !pas_add_bridge(np)) |
171 | of_node_get(np); | 171 | of_node_get(np); |
172 | 172 | ||
173 | of_node_put(root); | 173 | of_node_put(root); |
diff --git a/arch/powerpc/platforms/powermac/pci.c b/arch/powerpc/platforms/powermac/pci.c index 8302e34a3cbf..fb853c0affcc 100644 --- a/arch/powerpc/platforms/powermac/pci.c +++ b/arch/powerpc/platforms/powermac/pci.c | |||
@@ -35,8 +35,6 @@ | |||
35 | #define DBG(x...) | 35 | #define DBG(x...) |
36 | #endif | 36 | #endif |
37 | 37 | ||
38 | static int add_bridge(struct device_node *dev); | ||
39 | |||
40 | /* XXX Could be per-controller, but I don't think we risk anything by | 38 | /* XXX Could be per-controller, but I don't think we risk anything by |
41 | * assuming we won't have both UniNorth and Bandit */ | 39 | * assuming we won't have both UniNorth and Bandit */ |
42 | static int has_uninorth; | 40 | static int has_uninorth; |
@@ -897,7 +895,7 @@ static void __init setup_u3_ht(struct pci_controller* hose) | |||
897 | * "pci" (a MPC106) and no bandit or chaos bridges, and contrariwise, | 895 | * "pci" (a MPC106) and no bandit or chaos bridges, and contrariwise, |
898 | * if we have one or more bandit or chaos bridges, we don't have a MPC106. | 896 | * if we have one or more bandit or chaos bridges, we don't have a MPC106. |
899 | */ | 897 | */ |
900 | static int __init add_bridge(struct device_node *dev) | 898 | static int __init pmac_add_bridge(struct device_node *dev) |
901 | { | 899 | { |
902 | int len; | 900 | int len; |
903 | struct pci_controller *hose; | 901 | struct pci_controller *hose; |
@@ -1023,7 +1021,7 @@ void __init pmac_pci_init(void) | |||
1023 | if (strcmp(np->name, "bandit") == 0 | 1021 | if (strcmp(np->name, "bandit") == 0 |
1024 | || strcmp(np->name, "chaos") == 0 | 1022 | || strcmp(np->name, "chaos") == 0 |
1025 | || strcmp(np->name, "pci") == 0) { | 1023 | || strcmp(np->name, "pci") == 0) { |
1026 | if (add_bridge(np) == 0) | 1024 | if (pmac_add_bridge(np) == 0) |
1027 | of_node_get(np); | 1025 | of_node_get(np); |
1028 | } | 1026 | } |
1029 | if (strcmp(np->name, "ht") == 0) { | 1027 | if (strcmp(np->name, "ht") == 0) { |
@@ -1037,7 +1035,7 @@ void __init pmac_pci_init(void) | |||
1037 | /* Probe HT last as it relies on the agp resources to be already | 1035 | /* Probe HT last as it relies on the agp resources to be already |
1038 | * setup | 1036 | * setup |
1039 | */ | 1037 | */ |
1040 | if (ht && add_bridge(ht) != 0) | 1038 | if (ht && pmac_add_bridge(ht) != 0) |
1041 | of_node_put(ht); | 1039 | of_node_put(ht); |
1042 | 1040 | ||
1043 | /* Setup the linkage between OF nodes and PHBs */ | 1041 | /* Setup the linkage between OF nodes and PHBs */ |