arch/arm/lib/bootm-fdt.c: Guard the include of <asm/armv7.h>
With d6b72da0
we started including this file unconditionally. This
isn't allowed in a file that we also use on armv8. This will get
cleaned up a bit better once we really start using these same features
(and have similar fdt updates needed) on armv8.
Signed-off-by: Tom Rini <trini@konsulko.com>
This commit is contained in:
parent
2068cea173
commit
4588d61a28
arch/arm/lib
|
@ -17,7 +17,9 @@
|
|||
|
||||
#include <common.h>
|
||||
#include <fdt_support.h>
|
||||
#ifdef CONFIG_ARMV7_NONSEC
|
||||
#include <asm/armv7.h>
|
||||
#endif
|
||||
#include <asm/psci.h>
|
||||
|
||||
DECLARE_GLOBAL_DATA_PTR;
|
||||
|
|
Loading…
Reference in New Issue