mirror of
https://github.com/Stichting-MINIX-Research-Foundation/u-boot.git
synced 2025-09-10 12:39:22 -04:00
image: Fix inverted logic in architecture check.
Commit 476af29 broke this check when the ifdef lists we consolidated. Signed-off-by: Thierry Reding <thierry.reding@avionic-design.de> Acked-by: Mike Frysinger <vapier@gentoo.org>
This commit is contained in:
parent
e4a3d57dc7
commit
7566832a88
@ -615,7 +615,7 @@ void fit_conf_print(const void *fit, int noffset, const char *p);
|
|||||||
#ifndef USE_HOSTCC
|
#ifndef USE_HOSTCC
|
||||||
static inline int fit_image_check_target_arch(const void *fdt, int node)
|
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 */
|
#endif /* USE_HOSTCC */
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user