mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-30 00:21:06 +00:00
i2c, dtt: move dtt_init () to board_init_r ()
In case where a board not uses CONFIG_POST, it is not necessary to init the DTTs when running from flash. Signed-off-by: Heiko Schocher <hs@denx.de> Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
This commit is contained in:
parent
5b0055547f
commit
db1d72afd7
1 changed files with 4 additions and 1 deletions
|
@ -339,10 +339,10 @@ init_fnc_t *init_sequence[] = {
|
||||||
#if defined(CONFIG_HARD_SPI)
|
#if defined(CONFIG_HARD_SPI)
|
||||||
init_func_spi,
|
init_func_spi,
|
||||||
#endif
|
#endif
|
||||||
|
#ifdef CONFIG_POST
|
||||||
#if defined(CONFIG_DTT) /* Digital Thermometers and Thermostats */
|
#if defined(CONFIG_DTT) /* Digital Thermometers and Thermostats */
|
||||||
dtt_init,
|
dtt_init,
|
||||||
#endif
|
#endif
|
||||||
#ifdef CONFIG_POST
|
|
||||||
post_init_f,
|
post_init_f,
|
||||||
#endif
|
#endif
|
||||||
INIT_FUNC_WATCHDOG_RESET
|
INIT_FUNC_WATCHDOG_RESET
|
||||||
|
@ -1072,6 +1072,9 @@ void board_init_r (gd_t *id, ulong dest_addr)
|
||||||
|
|
||||||
WATCHDOG_RESET ();
|
WATCHDOG_RESET ();
|
||||||
|
|
||||||
|
#if defined(CONFIG_DTT) && !defined(CONFIG_POST)
|
||||||
|
dtt_init ();
|
||||||
|
#endif
|
||||||
#if defined(CONFIG_CMD_SCSI)
|
#if defined(CONFIG_CMD_SCSI)
|
||||||
WATCHDOG_RESET ();
|
WATCHDOG_RESET ();
|
||||||
puts ("SCSI: ");
|
puts ("SCSI: ");
|
||||||
|
|
Loading…
Reference in a new issue