diff options
author | Antonio Nino Diaz <antonio.ninodiaz@arm.com> | 2018-08-16 16:46:06 +0100 |
---|---|---|
committer | Antonio Nino Diaz <antonio.ninodiaz@arm.com> | 2018-08-22 10:26:05 +0100 |
commit | 39b6cc66d670be41d6b51b644beb675f386a4240 (patch) | |
tree | ddf5b68804ea9548ea75fe38108eeb6c790afd8c /lib/libc/printf.c | |
parent | 870ce3ddd3b33c59418a7dba703e8a66ec75f98f (diff) | |
download | trusted-firmware-a-39b6cc66d670be41d6b51b644beb675f386a4240.tar.gz |
libc: Use printf and snprintf across codebase
tf_printf and tf_snprintf are now called printf and snprintf, so the
code needs to be updated.
Change-Id: Iffeee97afcd6328c4c2d30830d4923b964682d71
Signed-off-by: Antonio Nino Diaz <antonio.ninodiaz@arm.com>
Diffstat (limited to 'lib/libc/printf.c')
-rw-r--r-- | lib/libc/printf.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/libc/printf.c b/lib/libc/printf.c index a1a802483d..4f4a722f78 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) \ |