Skip to content
Snippets Groups Projects
Commit 160cfc4b authored by Nobuhiro Iwamatsu's avatar Nobuhiro Iwamatsu Committed by Tom Rini
Browse files

boot_fit: Change return value from FDT_ERROR to -EINVAL in fdt_offset()


FDT_ERROR is defined as unsigned long. However, since the return value of
fdt_offset() is int, a warning will occur when compiling. Also, it is better
to use -EINVAL than FDT_ERROR.
This fixes this problem by change return value from FDT_ERROR to -EINVAL.

Signed-off-by: default avatarNobuhiro Iwamatsu <iwamatsu@nigauri.org>
CC: Franklin S Cooper Jr <fcooper@ti.com>
Reviewed-by: default avatarFranklin S Cooper Jr <fcooper@ti.com>
parent 7088a365
No related branches found
No related tags found
No related merge requests found
...@@ -25,7 +25,7 @@ int fdt_offset(void *fit) ...@@ -25,7 +25,7 @@ int fdt_offset(void *fit)
images = fdt_path_offset(fit, FIT_IMAGES_PATH); images = fdt_path_offset(fit, FIT_IMAGES_PATH);
if (images < 0) { if (images < 0) {
debug("%s: Cannot find /images node: %d\n", __func__, images); debug("%s: Cannot find /images node: %d\n", __func__, images);
return FDT_ERROR; return -EINVAL;
} }
fdt_name = fdt_getprop(fit, node, FIT_FDT_PROP, &fdt_len); fdt_name = fdt_getprop(fit, node, FIT_FDT_PROP, &fdt_len);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment