aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/kernel.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/kernel.h')
-rw-r--r--include/linux/kernel.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/include/linux/kernel.h b/include/linux/kernel.h
index e971c55f45ac..1f3cd8ad0523 100644
--- a/include/linux/kernel.h
+++ b/include/linux/kernel.h
@@ -16,6 +16,7 @@
16#include <linux/log2.h> 16#include <linux/log2.h>
17#include <linux/typecheck.h> 17#include <linux/typecheck.h>
18#include <linux/ratelimit.h> 18#include <linux/ratelimit.h>
19#include <linux/dynamic_printk.h>
19#include <asm/byteorder.h> 20#include <asm/byteorder.h>
20#include <asm/bug.h> 21#include <asm/bug.h>
21 22
@@ -304,8 +305,12 @@ static inline char *pack_hex_byte(char *buf, u8 byte)
304#define pr_info(fmt, arg...) \ 305#define pr_info(fmt, arg...) \
305 printk(KERN_INFO fmt, ##arg) 306 printk(KERN_INFO fmt, ##arg)
306 307
307#ifdef DEBUG
308/* If you are writing a driver, please use dev_dbg instead */ 308/* If you are writing a driver, please use dev_dbg instead */
309#if defined(CONFIG_DYNAMIC_PRINTK_DEBUG)
310#define pr_debug(fmt, ...) do { \
311 dynamic_pr_debug(fmt, ##__VA_ARGS__); \
312 } while (0)
313#elif defined(DEBUG)
309#define pr_debug(fmt, arg...) \ 314#define pr_debug(fmt, arg...) \
310 printk(KERN_DEBUG fmt, ##arg) 315 printk(KERN_DEBUG fmt, ##arg)
311#else 316#else