Skip to content
Snippets Groups Projects
Commit 7566832a authored by Thierry Reding's avatar Thierry Reding Committed by Wolfgang Denk
Browse files

image: Fix inverted logic in architecture check.


Commit 476af299 broke this check when the ifdef lists we consolidated.

Signed-off-by: default avatarThierry Reding <thierry.reding@avionic-design.de>
Acked-by: default avatarMike Frysinger <vapier@gentoo.org>
parent e4a3d57d
No related branches found
No related tags found
No related merge requests found
......@@ -615,7 +615,7 @@ void fit_conf_print(const void *fit, int noffset, const char *p);
#ifndef USE_HOSTCC
static inline int fit_image_check_target_arch(const void *fdt, int node)
{
return !fit_image_check_arch(fdt, node, IH_ARCH_DEFAULT);
return fit_image_check_arch(fdt, node, IH_ARCH_DEFAULT);
}
#endif /* USE_HOSTCC */
......
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