kernel_samsung_a34x-permissive/drivers/misc/mediatek/vow/vow_assert.h
2024-04-28 15:51:13 +02:00

37 lines
640 B
C

/* SPDX-License-Identifier: GPL-2.0 */
/*
* Copyright (c) 2020 MediaTek Inc.
*/
#ifndef VOW_ASSERT_H
#define VOW_ASSERT_H
#ifdef CONFIG_MTK_AEE_FEATURE
#include <mt-plat/aee.h>
#endif
#include "vow.h"
#ifdef CONFIG_MTK_AEE_FEATURE
#define VOW_ASSERT(exp) \
do { \
if (!(exp)) { \
aee_kernel_exception_api(__FILE__, \
__LINE__, \
DB_OPT_DEFAULT, \
"[VOW]", \
"ASSERT("#exp") fail!!"); \
} \
} while (0)
#else
#define VOW_ASSERT(exp) \
do { \
if (!(exp)) { \
pr_notice("ASSERT("#exp")fail:\""__FILE__"\", %uL\n", \
__LINE__); \
} \
} while (0)
#endif
#endif /* end of VOW_ASSERT_H */