From: Sam Protsenko Date: Mon, 5 Aug 2019 17:11:03 +0000 (+0300) Subject: common: image-android-dt: Fix logic in print fdt info routine X-Git-Tag: v2019.10-rc2~15^2~1 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=24434adbd1c73b59bff3c42691e26cc52cdb262a;p=platform%2Fkernel%2Fu-boot.git common: image-android-dt: Fix logic in print fdt info routine Do not attempt to print fdt info if root node wasn't found. Signed-off-by: Sam Protsenko --- diff --git a/common/image-android-dt.c b/common/image-android-dt.c index 6916826..a2d52df 100644 --- a/common/image-android-dt.c +++ b/common/image-android-dt.c @@ -78,17 +78,18 @@ static void android_dt_print_fdt_info(const struct fdt_header *fdt) { u32 fdt_size; int root_node_off; - const char *compatible = NULL; + const char *compatible; - fdt_size = fdt_totalsize(fdt); root_node_off = fdt_path_offset(fdt, "/"); if (root_node_off < 0) { printf("Error: Root node not found\n"); - } else { - compatible = fdt_getprop(fdt, root_node_off, "compatible", - NULL); + return; } + fdt_size = fdt_totalsize(fdt); + compatible = fdt_getprop(fdt, root_node_off, "compatible", + NULL); + printf(" (FDT)size = %d\n", fdt_size); printf(" (FDT)compatible = %s\n", compatible ? compatible : "(unknown)");