mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-20 11:34:20 +00:00

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>
38 lines
865 B
C
38 lines
865 B
C
/*
|
|
* Copyright (c) 2013-2018, ARM Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include <assert.h>
|
|
#include <cdefs.h>
|
|
#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
|
|
* LOG_LEVEL_INFO, which is the default value for builds with DEBUG=1.
|
|
*/
|
|
|
|
#if PLAT_LOG_LEVEL_ASSERT >= LOG_LEVEL_VERBOSE
|
|
void __assert(const char *file, unsigned int line, const char *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)
|
|
{
|
|
printf("ASSERT: %s:%d\n", file, line);
|
|
console_flush();
|
|
plat_panic_handler();
|
|
}
|
|
#else
|
|
void __assert(void)
|
|
{
|
|
plat_panic_handler();
|
|
}
|
|
#endif
|