diff options
-rw-r--r-- | include/linux/device.h | 15 | ||||
-rw-r--r-- | include/linux/kernel.h | 6 |
2 files changed, 7 insertions, 14 deletions
diff --git a/include/linux/device.h b/include/linux/device.h index 2258d89bf523..d57661129cb2 100644 --- a/include/linux/device.h +++ b/include/linux/device.h | |||
@@ -608,21 +608,16 @@ extern const char *dev_driver_string(struct device *dev); | |||
608 | #define dev_dbg(dev, format, arg...) \ | 608 | #define dev_dbg(dev, format, arg...) \ |
609 | dev_printk(KERN_DEBUG , dev , format , ## arg) | 609 | dev_printk(KERN_DEBUG , dev , format , ## arg) |
610 | #else | 610 | #else |
611 | static inline int __attribute__ ((format (printf, 2, 3))) | 611 | #define dev_dbg(dev, format, arg...) \ |
612 | dev_dbg(struct device *dev, const char *fmt, ...) | 612 | ({ if (0) dev_printk(KERN_DEBUG, dev, format, ##arg); 0; }) |
613 | { | ||
614 | return 0; | ||
615 | } | ||
616 | #endif | 613 | #endif |
617 | 614 | ||
618 | #ifdef VERBOSE_DEBUG | 615 | #ifdef VERBOSE_DEBUG |
619 | #define dev_vdbg dev_dbg | 616 | #define dev_vdbg dev_dbg |
620 | #else | 617 | #else |
621 | static inline int __attribute__ ((format (printf, 2, 3))) | 618 | |
622 | dev_vdbg(struct device *dev, const char *fmt, ...) | 619 | #define dev_vdbg(dev, format, arg...) \ |
623 | { | 620 | ({ if (0) dev_printk(KERN_DEBUG, dev, format, ##arg); 0; }) |
624 | return 0; | ||
625 | } | ||
626 | #endif | 621 | #endif |
627 | 622 | ||
628 | /* Create alias, so I can be autoloaded. */ | 623 | /* Create alias, so I can be autoloaded. */ |
diff --git a/include/linux/kernel.h b/include/linux/kernel.h index 2df44e773270..cd6d02cf854d 100644 --- a/include/linux/kernel.h +++ b/include/linux/kernel.h | |||
@@ -293,10 +293,8 @@ extern void print_hex_dump_bytes(const char *prefix_str, int prefix_type, | |||
293 | #define pr_debug(fmt, arg...) \ | 293 | #define pr_debug(fmt, arg...) \ |
294 | printk(KERN_DEBUG fmt, ##arg) | 294 | printk(KERN_DEBUG fmt, ##arg) |
295 | #else | 295 | #else |
296 | static inline int __attribute__ ((format (printf, 1, 2))) pr_debug(const char * fmt, ...) | 296 | #define pr_debug(fmt, arg...) \ |
297 | { | 297 | ({ if (0) printk(KERN_DEBUG fmt, ##arg); 0; }) |
298 | return 0; | ||
299 | } | ||
300 | #endif | 298 | #endif |
301 | 299 | ||
302 | /* | 300 | /* |