From: Philippe Schenker Date: Mon, 29 Aug 2022 17:59:53 +0000 (+0200) Subject: board: verdin-imx8mp: add call to ft_common_board_setup X-Git-Url: http://git.dujemihanovic.xyz/login.html?a=commitdiff_plain;h=6a64bcfae058b19a4275fc1963954f399951bce1;p=u-boot.git board: verdin-imx8mp: add call to ft_common_board_setup With this call the following attributes get set to the device-tree and are then accessible from linux in /proc/device-tree/ serial-number: The serial number that is stored in config-block toradex,board-rev: The version of the module (e.g. V1.1A) toradex,product-id: The SKU number of the module runnin Fixes: commit 2bc2f817cea7 ("board: toradex: add verdin imx8m plus support") Signed-off-by: Philippe Schenker Acked-by: Marcel Ziswiler --- diff --git a/board/toradex/verdin-imx8mp/verdin-imx8mp.c b/board/toradex/verdin-imx8mp/verdin-imx8mp.c index 783e2bd0d2..06f665b92c 100644 --- a/board/toradex/verdin-imx8mp/verdin-imx8mp.c +++ b/board/toradex/verdin-imx8mp/verdin-imx8mp.c @@ -121,6 +121,6 @@ int board_late_init(void) #if IS_ENABLED(CONFIG_OF_LIBFDT) && IS_ENABLED(CONFIG_OF_BOARD_SETUP) int ft_board_setup(void *blob, struct bd_info *bd) { - return 0; + return ft_common_board_setup(blob, bd); } #endif