blob: 5a5820c11db81db3c56ac0d4a45a3a21aff58ffb [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Jiri Olsa975f14f2016-02-14 17:03:42 +01002#ifndef __API_DEBUG_INTERNAL_H__
3#define __API_DEBUG_INTERNAL_H__
4
5#include "debug.h"
6
7#define __pr(func, fmt, ...) \
8do { \
9 if ((func)) \
10 (func)("libapi: " fmt, ##__VA_ARGS__); \
11} while (0)
12
Kefeng Wangc405c372019-10-18 11:18:47 +080013extern libapi_print_fn_t __pr_warn;
Jiri Olsa975f14f2016-02-14 17:03:42 +010014extern libapi_print_fn_t __pr_info;
15extern libapi_print_fn_t __pr_debug;
16
Kefeng Wangc405c372019-10-18 11:18:47 +080017#define pr_warn(fmt, ...) __pr(__pr_warn, fmt, ##__VA_ARGS__)
Jiri Olsa975f14f2016-02-14 17:03:42 +010018#define pr_info(fmt, ...) __pr(__pr_info, fmt, ##__VA_ARGS__)
19#define pr_debug(fmt, ...) __pr(__pr_debug, fmt, ##__VA_ARGS__)
20
21#endif /* __API_DEBUG_INTERNAL_H__ */