]> git.ipfire.org Git - thirdparty/linux.git/blame - tools/lib/api/debug-internal.h
Merge tag 'hid-for-linus-2025070502' of git://git.kernel.org/pub/scm/linux/kernel...
[thirdparty/linux.git] / tools / lib / api / debug-internal.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
975f14fa
JO
2#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
c405c37b 13extern libapi_print_fn_t __pr_warn;
975f14fa
JO
14extern libapi_print_fn_t __pr_info;
15extern libapi_print_fn_t __pr_debug;
16
c405c37b 17#define pr_warn(fmt, ...) __pr(__pr_warn, fmt, ##__VA_ARGS__)
975f14fa
JO
18#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__ */