xj | b04a402 | 2021-11-25 15:01:52 +0800 | [diff] [blame^] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
2 | /* | ||||
3 | * Copyright (c) 2019 MediaTek Inc. | ||||
4 | */ | ||||
5 | |||||
6 | #ifndef _SRC_UTIL_H_ | ||||
7 | #define _SRC_UTIL_H_ | ||||
8 | |||||
9 | /* #define FILELOG 1 */ | ||||
10 | |||||
11 | #ifdef FILELOG | ||||
12 | void filelog(char *str); | ||||
13 | #else | ||||
14 | #define filelog(str) | ||||
15 | #endif | ||||
16 | |||||
17 | #endif /* _SRC_UTIL_H_ */ |