#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__ */ ///git.distanz.ch/cgit.cgi/linux/net-next.git' title='net-next.git Git repository'/>
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2016-12-27 17:51:36 -0800
committerLinus Torvalds <torvalds@linux-foundation.org>2016-12-27 17:51:36 -0800
commit2d706e790f0508dff4fb72eca9b4892b79757feb (patch)
tree1c79c1ec8880f5d6184d166d1f423956833724aa
parent8f18e4d03ed8fa5e4a300c94550533bd8ce4ff9a (diff)
parent8759fec4af222f338d08f8f1a7ad6a77ca6cb301 (diff)
Merge branch 'linus' of git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6
Pull crypto fix from Herbert Xu: "This fixes a hash corruption bug in the marvell driver" * 'linus' of git://git.kernel.org/pub/scm/linux/kernel/git/herbert/crypto-2.6: crypto: marvell - Copy IVDIG before launching partial DMA ahash requests