summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPhilippe Schenker <philippe.schenker@toradex.com>2022-08-26 15:05:38 +0200
committerPhilippe Schenker <philippe.schenker@toradex.com>2022-08-31 10:24:30 +0200
commit74abe35dfc1376ca09ba7e468048993856e2a05b (patch)
treee4f0eb91f6c2af3882ea22276edabbd806a913df
parent21c206960bd0b51afae8d8e21244698e099a0bfc (diff)
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 <philippe.schenker@toradex.com> Upstream-Status: Submitted [https://lore.kernel.org/u-boot/20220829175953.249441-2-dev@pschenker.ch/]
-rw-r--r--board/toradex/verdin-imx8mp/verdin-imx8mp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/toradex/verdin-imx8mp/verdin-imx8mp.c b/board/toradex/verdin-imx8mp/verdin-imx8mp.c
index 8334c9bb37..bbbddb8596 100644
--- a/board/toradex/verdin-imx8mp/verdin-imx8mp.c
+++ b/board/toradex/verdin-imx8mp/verdin-imx8mp.c
@@ -135,6 +135,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