From 364ac5b5836055c2a49f986769b2d925f230f093 Mon Sep 17 00:00:00 2001 From: Axel Lin Date: Sat, 7 Feb 2015 09:12:39 +0800 Subject: 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 Acked-by: Simon Glass --- common/image-fit.c | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) (limited to 'common/image-fit.c') 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); /* -- cgit v1.2.1