From: Thierry Reding Date: Thu, 27 Oct 2011 08:58:25 +0000 (+0000) Subject: image: Fix inverted logic in architecture check. X-Git-Tag: v2011.12-rc1~401 X-Git-Url: https://git.kernelconcepts.de/?a=commitdiff_plain;h=7566832a88d4cdff86140d8515b40ca942c7d444;p=karo-tx-uboot.git image: Fix inverted logic in architecture check. Commit 476af29 broke this check when the ifdef lists we consolidated. Signed-off-by: Thierry Reding Acked-by: Mike Frysinger --- diff --git a/include/image.h b/include/image.h index 1ba866e475..c56a18df70 100644 --- a/include/image.h +++ b/include/image.h @@ -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 */