diff options
author | Peter Tyser <ptyser@xes-inc.com> | 2009-09-16 22:03:07 -0500 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2009-09-22 23:04:44 +0200 |
commit | 3a8f28d0a6d9f8505017680233064c13e4587174 (patch) | |
tree | b618a3d8bf79da216dbb45095a0bc9fc61f02bfb /lib_ppc | |
parent | 3202d33169df04da5cf3dea8c5ab0a902b90ecaa (diff) | |
download | u-boot-imx-3a8f28d0a6d9f8505017680233064c13e4587174.zip u-boot-imx-3a8f28d0a6d9f8505017680233064c13e4587174.tar.gz u-boot-imx-3a8f28d0a6d9f8505017680233064c13e4587174.tar.bz2 |
ppc: Clean up calling of misc_init_r() during init
Remove board-specific #ifdefs for calling misc_init_r() during
initializtion
Signed-off-by: Peter Tyser <ptyser@xes-inc.com>
Acked-by: Heiko Schocher <hs@denx.de>
Diffstat (limited to 'lib_ppc')
-rw-r--r-- | lib_ppc/board.c | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/lib_ppc/board.c b/lib_ppc/board.c index e8509ee..c6fb6fe 100644 --- a/lib_ppc/board.c +++ b/lib_ppc/board.c @@ -921,17 +921,7 @@ void board_init_r (gd_t *id, ulong dest_addr) /* Initialize the console (after the relocation and devices init) */ console_init_r (); -#if defined(CONFIG_CCM) || \ - defined(CONFIG_COGENT) || \ - defined(CONFIG_CPCI405) || \ - defined(CONFIG_EVB64260) || \ - defined(CONFIG_KUP4K) || \ - defined(CONFIG_KUP4X) || \ - defined(CONFIG_LWMON) || \ - defined(CONFIG_PCU_E) || \ - defined(CONFIG_SC3) || \ - defined(CONFIG_W7O) || \ - defined(CONFIG_MISC_INIT_R) +#if defined(CONFIG_MISC_INIT_R) /* miscellaneous platform dependent initialisations */ misc_init_r (); #endif |