ath10k: fix typo in addr calculation
[linux-2.6/btrfs-unstable.git] / tools / lib / api / debug-internal.h
blob188f7880eafe670e7afc84ea46f9c7445ede4bed
1 #ifndef __API_DEBUG_INTERNAL_H__
2 #define __API_DEBUG_INTERNAL_H__
4 #include "debug.h"
6 #define __pr(func, fmt, ...) \
7 do { \
8 if ((func)) \
9 (func)("libapi: " fmt, ##__VA_ARGS__); \
10 } while (0)
12 extern libapi_print_fn_t __pr_warning;
13 extern libapi_print_fn_t __pr_info;
14 extern libapi_print_fn_t __pr_debug;
16 #define pr_warning(fmt, ...) __pr(__pr_warning, fmt, ##__VA_ARGS__)
17 #define pr_info(fmt, ...) __pr(__pr_info, fmt, ##__VA_ARGS__)
18 #define pr_debug(fmt, ...) __pr(__pr_debug, fmt, ##__VA_ARGS__)
20 #endif /* __API_DEBUG_INTERNAL_H__ */