mirror of
https://github.com/physwizz/a155-U-u1.git
synced 2024-11-19 13:27:49 +00:00
17 lines
280 B
C
17 lines
280 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* Copyright (C) 2020 MediaTek Inc.
|
|
*/
|
|
|
|
#ifndef __MTK_IRQ_MON__
|
|
#define __MTK_IRQ_MON__
|
|
|
|
#if IS_ENABLED(CONFIG_MTK_IRQ_MONITOR)
|
|
extern void mt_aee_dump_irq_info(void);
|
|
#else
|
|
#define mt_aee_dump_irq_info() do {} while (0)
|
|
#endif
|
|
|
|
#endif
|
|
|