1
0
mirror of https://github.com/physwizz/a155-U-u1.git synced 2024-11-19 13:27:49 +00:00
a155-U-u1/kernel-5.10/drivers/misc/mediatek/mminfra/mtk-mminfra-debug.h
2024-03-11 06:53:12 +11:00

23 lines
387 B
C

/* SPDX-License-Identifier: GPL-2.0 */
/*
* Copyright (c) 2021 MediaTek Inc.
*/
#ifndef __MTK_MMINFRA_DEBUG_H
#define __MTK_MMINFRA_DEBUG_H
#if IS_ENABLED(CONFIG_MTK_MMINFRA)
int mtk_mminfra_dbg_hang_detect(const char *user);
#else
static inline int mtk_mminfra_dbg_hang_detect(const char *user)
{
return 0;
}
#endif /* CONFIG_MTK_MMINFRA */
#endif /* __MTK_MMINFRA_DEBUG_H */