kernel_samsung_a34x-permissive/sound/soc/mediatek/utility/audio_assert.h
2024-04-28 15:51:13 +02:00

45 lines
787 B
C

/* SPDX-License-Identifier: GPL-2.0 */
/*
* Copyright (C) 2018 MediaTek Inc.
*/
#ifndef AUDIO_ASSERT_H
#define AUDIO_ASSERT_H
#ifdef CONFIG_MTK_AEE_FEATURE
#include <mt-plat/aee.h>
#endif
#ifdef CONFIG_MTK_AEE_FEATURE
#define AUD_ASSERT(exp) \
do { \
if (!(exp)) { \
aee_kernel_exception_api(__FILE__, \
__LINE__, \
DB_OPT_DEFAULT, \
"[Audio]", \
"ASSERT("#exp") fail!!"); \
} \
} while (0)
#else
#define AUD_ASSERT(exp) \
do { \
if (!(exp)) { \
pr_notice("ASSERT("#exp")!! \"" __FILE__ "\", %uL\n", \
__LINE__); \
} \
} while (0)
#endif
#define AUD_WARNING(string) \
do { \
pr_notice("AUD_WARNING(" string"): \"" __FILE__ "\", %uL\n", \
__LINE__); \
WARN_ON(1); \
} while (0)
#endif /* end of AUDIO_ASSERT_H */