diff options
author | Marian Balakowicz <m8@semihalf.com> | 2007-11-09 12:11:56 -0500 |
---|---|---|
committer | Grant Likely <grant.likely@secretlab.ca> | 2008-01-18 11:30:07 -0500 |
commit | f584bc65ca9b9a4c21cc17bb01883874e2e6df0a (patch) | |
tree | e90c2c73b127d2cf2e187a269a80daa0ca9b710d /arch/powerpc/platforms/52xx/lite5200.c | |
parent | a6f024bbbef1f529cd6bee57f3ff576139e6f8d7 (diff) |
[POWERPC] mpc5200: Add common mpc52xx_setup_pci() routine
This patch moves a generic pci init code from lite5200
platform file to a common mpc52xx_setup_pci() routine
and adds additional compatibility property verification.
Signed-off-by: Marian Balakowicz <m8@semihalf.com>
Signed-off-by: Grant Likely <grant.likely@secretlab.ca>
Diffstat (limited to 'arch/powerpc/platforms/52xx/lite5200.c')
-rw-r--r-- | arch/powerpc/platforms/52xx/lite5200.c | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/arch/powerpc/platforms/52xx/lite5200.c b/arch/powerpc/platforms/52xx/lite5200.c index 25d2bfa3d9dc..ce903bef004e 100644 --- a/arch/powerpc/platforms/52xx/lite5200.c +++ b/arch/powerpc/platforms/52xx/lite5200.c | |||
@@ -131,10 +131,6 @@ static void lite5200_resume_finish(void __iomem *mbar) | |||
131 | 131 | ||
132 | static void __init lite5200_setup_arch(void) | 132 | static void __init lite5200_setup_arch(void) |
133 | { | 133 | { |
134 | #ifdef CONFIG_PCI | ||
135 | struct device_node *np; | ||
136 | #endif | ||
137 | |||
138 | if (ppc_md.progress) | 134 | if (ppc_md.progress) |
139 | ppc_md.progress("lite5200_setup_arch()", 0); | 135 | ppc_md.progress("lite5200_setup_arch()", 0); |
140 | 136 | ||
@@ -154,13 +150,7 @@ static void __init lite5200_setup_arch(void) | |||
154 | lite5200_pm_init(); | 150 | lite5200_pm_init(); |
155 | #endif | 151 | #endif |
156 | 152 | ||
157 | #ifdef CONFIG_PCI | 153 | mpc52xx_setup_pci(); |
158 | np = of_find_node_by_type(NULL, "pci"); | ||
159 | if (np) { | ||
160 | mpc52xx_add_bridge(np); | ||
161 | of_node_put(np); | ||
162 | } | ||
163 | #endif | ||
164 | } | 154 | } |
165 | 155 | ||
166 | /* | 156 | /* |