#ifndef __API_DEBUG_INTERNAL_H__ #define __API_DEBUG_INTERNAL_H__ #include "debug.h" #define __pr(func, fmt, ...) \ do { \ if ((func)) \ (func)("libapi: " fmt, ##__VA_ARGS__); \ } while (0) extern libapi_print_fn_t __pr_warning; extern libapi_print_fn_t __pr_info; extern libapi_print_fn_t __pr_debug; #define pr_warning(fmt, ...) __pr(__pr_warning, fmt, ##__VA_ARGS__) #define pr_info(fmt, ...) __pr(__pr_info, fmt, ##__VA_ARGS__) #define pr_debug(fmt, ...) __pr(__pr_debug, fmt, ##__VA_ARGS__) #endif /* __API_DEBUG_INTERNAL_H__ */ net-next.git Git repository'/>
summaryrefslogtreecommitdiff
path: root/scripts/Makefile.fwinst
diff options
context:
space:
mode:
authorMasahiro Yamada <yamada.m@jp.panasonic.com>2014-04-28 16:32:43 +0900
committerMichal Marek <mmarek@suse.cz>2014-04-30 17:34:35 +0200
commit3fbb43df983acf6f10a122e43e73daf6528ad7ed (patch)
tree2f35c8cf4f9f3dc1e21b73fe1a6b4828419426d1 /scripts/Makefile.fwinst
parent38385f8f0180322513a6350234737fbc02172d06 (diff)
kbuild: trivial - fix comment block indent
Signed-off-by: Masahiro Yamada <yamada.m@jp.panasonic.com> Signed-off-by: Michal Marek <mmarek@suse.cz>
Diffstat (limited to 'scripts/Makefile.fwinst')