diff options
Diffstat (limited to 'include/common')
-rw-r--r-- | include/common/asm_macros.S | 3 | ||||
-rw-r--r-- | include/common/bl_common.h | 3 | ||||
-rw-r--r-- | include/common/debug.h | 4 |
3 files changed, 5 insertions, 5 deletions
diff --git a/include/common/asm_macros.S b/include/common/asm_macros.S index 8bcb7d28..6cf1a19f 100644 --- a/include/common/asm_macros.S +++ b/include/common/asm_macros.S @@ -28,6 +28,9 @@ * POSSIBILITY OF SUCH DAMAGE. */ +#include <arch.h> + + .macro func_prologue stp x29, x30, [sp, #-0x10]! mov x29,sp diff --git a/include/common/bl_common.h b/include/common/bl_common.h index 1eb6d79a..9fba9c06 100644 --- a/include/common/bl_common.h +++ b/include/common/bl_common.h @@ -58,7 +58,8 @@ #ifndef __ASSEMBLY__ -#include <stdio.h> + +#include <cdefs.h> /* For __dead2 */ /******************************************************************************* * Structure used for telling the next BL how much of a particular type of diff --git a/include/common/debug.h b/include/common/debug.h index f8294777..e4fa31e5 100644 --- a/include/common/debug.h +++ b/include/common/debug.h @@ -31,9 +31,6 @@ #ifndef __DEBUG_H__ #define __DEBUG_H__ -/* Do not try to call this from ASM code. */ -#ifndef __ASSEMBLY__ - #include <stdio.h> /* If building the project with DEBUG disabled the INFO and WARN macros @@ -66,5 +63,4 @@ static inline void __attribute__((noreturn)) panic(void) ; } -#endif /* __ASSEMBLY__ */ #endif /* __DEBUG_H__ */ |