From 655100d706b963e4793cfe0d00e584e991d78127 Mon Sep 17 00:00:00 2001 From: Patrick Delaunay Date: Thu, 19 May 2022 09:07:30 +0200 Subject: board: engicam: stm32mp1: convert to livetree Replace gd->fdt_blob access with fdt_getprop() function to the function ofnode_get_property() to support a live tree. Signed-off-by: Patrick Delaunay Reviewed-by: Patrice Chotard --- board/engicam/stm32mp1/stm32mp1.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'board/engicam') diff --git a/board/engicam/stm32mp1/stm32mp1.c b/board/engicam/stm32mp1/stm32mp1.c index 20d8603c78..0a3e580f5b 100644 --- a/board/engicam/stm32mp1/stm32mp1.c +++ b/board/engicam/stm32mp1/stm32mp1.c @@ -14,8 +14,6 @@ #include #include -DECLARE_GLOBAL_DATA_PTR; - int checkboard(void) { char *mode; @@ -28,8 +26,8 @@ int checkboard(void) mode = "basic"; printf("Board: stm32mp1 in %s mode", mode); - fdt_compat = fdt_getprop(gd->fdt_blob, 0, "compatible", - &fdt_compat_len); + fdt_compat = ofnode_get_property(ofnode_root(), "compatible", + &fdt_compat_len); if (fdt_compat && fdt_compat_len) printf(" (%s)", fdt_compat); puts("\n"); -- cgit v1.2.3