[U-Boot] [PATCH 16/31] dtt: call dtt_init () conditional in init_sequence

If CONFIG_SYS_DTT_BOARD_INIT is defined, dtt_init () is not called in the init_sequence.
Signed-off-by: Heiko Schocher hs@denx.de --- include/dtt.h | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/include/dtt.h b/include/dtt.h index 399b64a..1c8eda7 100644 --- a/include/dtt.h +++ b/include/dtt.h @@ -36,7 +36,9 @@ defined(CONFIG_DTT_LM75) || \ defined(CONFIG_DTT_LM81)
+#ifndef CONFIG_SYS_DTT_BOARD_INIT #define CONFIG_DTT /* We have a DTT */ +#endif
#ifndef CONFIG_DTT_ADM1021 #define DTT_COMMERCIAL_MAX_TEMP 70 /* 0 - +70 C */

Dear Heiko Schocher,
In message 498027EA.5070601@denx.de you wrote:
If CONFIG_SYS_DTT_BOARD_INIT is defined, dtt_init () is not called in the init_sequence.
Signed-off-by: Heiko Schocher hs@denx.de
include/dtt.h | 2 ++ 1 files changed, 2 insertions(+), 0 deletions(-)
diff --git a/include/dtt.h b/include/dtt.h index 399b64a..1c8eda7 100644 --- a/include/dtt.h +++ b/include/dtt.h @@ -36,7 +36,9 @@ defined(CONFIG_DTT_LM75) || \ defined(CONFIG_DTT_LM81)
+#ifndef CONFIG_SYS_DTT_BOARD_INIT #define CONFIG_DTT /* We have a DTT */ +#endif
This seems the wrong place and the wrong way to acchieve what you probably are trying to do.
Actually I'm not even sure what you are trying to do, or why.
Please elucidate.
Best regards,
Wolfgang Denk
participants (2)
-
Heiko Schocher
-
Wolfgang Denk