diff options
author | Axel Lin <axel.lin@ingics.com> | 2015-02-07 09:12:39 +0800 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2015-02-16 12:41:41 -0500 |
commit | 364ac5b5836055c2a49f986769b2d925f230f093 (patch) | |
tree | af010d640dd60301b1c63432e3521b2eb67a9647 /common/image-fit.c | |
parent | 1fddd7b63c69b8da40b5dc737db0382f473f9644 (diff) | |
download | u-boot-364ac5b5836055c2a49f986769b2d925f230f093.tar.gz |
image: Convert to use fdt_for_each_subnode macro
Use fdt_for_each_subnode macro to simplify the code a bit.
Signed-off-by: Axel Lin <axel.lin@ingics.com>
Acked-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common/image-fit.c')
-rw-r--r-- | common/image-fit.c | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/common/image-fit.c b/common/image-fit.c index b47d11024f..778d2a148b 100644 --- a/common/image-fit.c +++ b/common/image-fit.c @@ -1010,9 +1010,7 @@ int fit_image_verify(const void *fit, int image_noffset) } /* Process all hash subnodes of the component image node */ - for (noffset = fdt_first_subnode(fit, image_noffset); - noffset >= 0; - noffset = fdt_next_subnode(fit, noffset)) { + fdt_for_each_subnode(fit, noffset, image_noffset) { const char *name = fit_get_name(fit, noffset, NULL); /* |