From f0c6e1c31b94f193047619b6adf67c2d792b659e Mon Sep 17 00:00:00 2001 From: Tom Rini Date: Wed, 3 Dec 2014 13:19:34 -0500 Subject: [PATCH] Revert "image-fdt: boot_get_fdt() return value when no DTB exists" It has been found that this change breaks the case of an appended device tree file, so for the problem in question some other solution must be found. This reverts commit c6150aaf2f2745141a7c2ceded58d7efbfeace7d. Reported-by: Bill Pringlemeir Reported-by: Pantelis Antoniou Confirmed-by: Bill Pringlemeir Signed-off-by: Tom Rini --- common/image-fdt.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/common/image-fdt.c b/common/image-fdt.c index 1d76bd6..8db3ccb 100644 --- a/common/image-fdt.c +++ b/common/image-fdt.c @@ -413,11 +413,11 @@ int boot_get_fdt(int flag, int argc, char * const argv[], uint8_t arch, } } else { debug("## No Flattened Device Tree\n"); - goto error; + return 0; } } else { debug("## No Flattened Device Tree\n"); - goto error; + return 0; } *of_flat_tree = fdt_blob;