From: Heiko Schocher Date: Wed, 25 Feb 2009 11:28:32 +0000 (+0100) Subject: i2c, dtt: move dtt_init () to board_init_r () X-Git-Tag: v2009.03-rc2~10 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=9c2d63ec0e9520948b6d598ea32e9aa4e0de847f;hp=00cc5595a7caac8066b408774383a956c2e26797;p=u-boot i2c, dtt: move dtt_init () to board_init_r () it is not necessary to init the DTTs so early, so move this init to board_init_r (). Signed-off-by: Heiko Schocher --- diff --git a/lib_ppc/board.c b/lib_ppc/board.c index 3bcfb45319..6d2930376e 100644 --- a/lib_ppc/board.c +++ b/lib_ppc/board.c @@ -339,9 +339,6 @@ init_fnc_t *init_sequence[] = { #if defined(CONFIG_HARD_SPI) init_func_spi, #endif -#if defined(CONFIG_DTT) /* Digital Thermometers and Thermostats */ - dtt_init, -#endif #ifdef CONFIG_POST post_init_f, #endif @@ -1072,6 +1069,9 @@ void board_init_r (gd_t *id, ulong dest_addr) WATCHDOG_RESET (); +#if defined(CONFIG_DTT) /* Digital Thermometers and Thermostats */ + dtt_init (); +#endif #if defined(CONFIG_CMD_SCSI) WATCHDOG_RESET (); puts ("SCSI: ");