diff options
-rw-r--r-- | include/linux/kernel.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/include/linux/kernel.h b/include/linux/kernel.h index 4d00988dad03..80f39cab470a 100644 --- a/include/linux/kernel.h +++ b/include/linux/kernel.h | |||
@@ -216,8 +216,10 @@ extern void dump_stack(void); | |||
216 | #define pr_debug(fmt,arg...) \ | 216 | #define pr_debug(fmt,arg...) \ |
217 | printk(KERN_DEBUG fmt,##arg) | 217 | printk(KERN_DEBUG fmt,##arg) |
218 | #else | 218 | #else |
219 | #define pr_debug(fmt,arg...) \ | 219 | static inline int __attribute__ ((format (printf, 1, 2))) pr_debug(const char * fmt, ...) |
220 | do { } while (0) | 220 | { |
221 | return 0; | ||
222 | } | ||
221 | #endif | 223 | #endif |
222 | 224 | ||
223 | #define pr_info(fmt,arg...) \ | 225 | #define pr_info(fmt,arg...) \ |