diff options
Diffstat (limited to 'lib/libc')
-rw-r--r-- | lib/libc/assert.c | 5 | ||||
-rw-r--r-- | lib/libc/printf.c | 2 |
2 files changed, 4 insertions, 3 deletions
diff --git a/lib/libc/assert.c b/lib/libc/assert.c index 2d2396ca..fa12cb6b 100644 --- a/lib/libc/assert.c +++ b/lib/libc/assert.c @@ -9,6 +9,7 @@ #include <console.h> #include <debug.h> #include <platform.h> +#include <stdio.h> /* * Only print the output if PLAT_LOG_LEVEL_ASSERT is higher or equal to @@ -18,14 +19,14 @@ #if PLAT_LOG_LEVEL_ASSERT >= LOG_LEVEL_VERBOSE void __assert(const char *file, unsigned int line, const char *assertion) { - tf_printf("ASSERT: %s:%d:%s\n", file, line, assertion); + printf("ASSERT: %s:%d:%s\n", file, line, assertion); console_flush(); plat_panic_handler(); } #elif PLAT_LOG_LEVEL_ASSERT >= LOG_LEVEL_INFO void __assert(const char *file, unsigned int line) { - tf_printf("ASSERT: %s:%d\n", file, line); + printf("ASSERT: %s:%d\n", file, line); console_flush(); plat_panic_handler(); } diff --git a/lib/libc/printf.c b/lib/libc/printf.c index a1a80248..4f4a722f 100644 --- a/lib/libc/printf.c +++ b/lib/libc/printf.c @@ -9,7 +9,7 @@ #include <stdint.h> /*********************************************************** - * The tf_printf implementation for all BL stages + * The printf implementation for all BL stages ***********************************************************/ #define get_num_va_args(_args, _lcount) \ |