mirror of
https://github.com/physwizz/a155-U-u1.git
synced 2024-11-19 13:27:49 +00:00
23 lines
387 B
C
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 */
|