diff options
author | Timur Tabi <timur@freescale.com> | 2012-10-15 15:52:21 -0400 |
---|---|---|
committer | Kumar Gala <galak@kernel.crashing.org> | 2012-11-25 08:00:24 -0500 |
commit | b567d1c74ecfe4c321bdba251506a95e4c837c86 (patch) | |
tree | 7fe016ce1dfa85a206c0dc41363c7878dac13fac /arch/powerpc | |
parent | 9655aa6b8034ebb69724dc4b54ad4f64a53096d1 (diff) |
powerpc/86xx: fsl_pcibios_fixup_bus requires CONFIG_PCI
Function fsl_pcibios_fixup_bus() is available only if PCI is enabled. The
MPC8610 HPCD platform file was not protecting the assigned with an #ifdef,
which results in a link failure when PCI is disabled. Every other platform
already has this #ifdef.
Signed-off-by: Timur Tabi <timur@freescale.com>
Signed-off-by: Kumar Gala <galak@kernel.crashing.org>
Diffstat (limited to 'arch/powerpc')
-rw-r--r-- | arch/powerpc/platforms/86xx/mpc8610_hpcd.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/arch/powerpc/platforms/86xx/mpc8610_hpcd.c b/arch/powerpc/platforms/86xx/mpc8610_hpcd.c index a817398a56da..04d9d317f741 100644 --- a/arch/powerpc/platforms/86xx/mpc8610_hpcd.c +++ b/arch/powerpc/platforms/86xx/mpc8610_hpcd.c | |||
@@ -353,5 +353,7 @@ define_machine(mpc86xx_hpcd) { | |||
353 | .time_init = mpc86xx_time_init, | 353 | .time_init = mpc86xx_time_init, |
354 | .calibrate_decr = generic_calibrate_decr, | 354 | .calibrate_decr = generic_calibrate_decr, |
355 | .progress = udbg_progress, | 355 | .progress = udbg_progress, |
356 | #ifdef CONFIG_PCI | ||
356 | .pcibios_fixup_bus = fsl_pcibios_fixup_bus, | 357 | .pcibios_fixup_bus = fsl_pcibios_fixup_bus, |
358 | #endif | ||
357 | }; | 359 | }; |