diff mbox series

[U-Boot,7/8] board: stm32f469-discovery: Add set_env_soc_name() in board_late_init()

Message ID 1517414947-5016-8-git-send-email-patrice.chotard@st.com
State Superseded
Headers show
Series Add get_cpu_id for STM32 SoCs | expand

Commit Message

Patrice CHOTARD Jan. 31, 2018, 4:09 p.m. UTC
From: Patrice Chotard <patrice.chotard@st.com>

Add set_env_soc_name() call in board_late_init() to set environment
variable "soc_name" with the name of current STM32 SoC.

Signed-off-by: Christophe Priouzeau <christophe.priouzeau@st.com>
Signed-off-by: Patrice Chotard <patrice.chotard@st.com>
---
 board/st/stm32f469-discovery/stm32f469-discovery.c | 7 +++++++
 1 file changed, 7 insertions(+)
diff mbox series

Patch

diff --git a/board/st/stm32f469-discovery/stm32f469-discovery.c b/board/st/stm32f469-discovery/stm32f469-discovery.c
index 36f7b2e8e176..c2ef76ba9ac3 100644
--- a/board/st/stm32f469-discovery/stm32f469-discovery.c
+++ b/board/st/stm32f469-discovery/stm32f469-discovery.c
@@ -54,6 +54,13 @@  int board_init(void)
 	return 0;
 }
 
+int board_late_init(void)
+{
+	set_env_soc_name(get_cpu_id());
+
+	return 0;
+}
+
 #ifdef CONFIG_MISC_INIT_R
 int misc_init_r(void)
 {