diff options
Diffstat (limited to 'include/linux/device.h')
-rw-r--r-- | include/linux/device.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/linux/device.h b/include/linux/device.h index c20dfbfc49b4..4639419522da 100644 --- a/include/linux/device.h +++ b/include/linux/device.h | |||
@@ -785,6 +785,8 @@ extern const char *dev_driver_string(const struct device *dev); | |||
785 | 785 | ||
786 | #ifdef CONFIG_PRINTK | 786 | #ifdef CONFIG_PRINTK |
787 | 787 | ||
788 | extern int __dev_printk(const char *level, const struct device *dev, | ||
789 | struct va_format *vaf); | ||
788 | extern int dev_printk(const char *level, const struct device *dev, | 790 | extern int dev_printk(const char *level, const struct device *dev, |
789 | const char *fmt, ...) | 791 | const char *fmt, ...) |
790 | __attribute__ ((format (printf, 3, 4))); | 792 | __attribute__ ((format (printf, 3, 4))); |
@@ -805,6 +807,9 @@ extern int _dev_info(const struct device *dev, const char *fmt, ...) | |||
805 | 807 | ||
806 | #else | 808 | #else |
807 | 809 | ||
810 | static inline int __dev_printk(const char *level, const struct device *dev, | ||
811 | struct va_format *vaf) | ||
812 | { return 0; } | ||
808 | static inline int dev_printk(const char *level, const struct device *dev, | 813 | static inline int dev_printk(const char *level, const struct device *dev, |
809 | const char *fmt, ...) | 814 | const char *fmt, ...) |
810 | __attribute__ ((format (printf, 3, 4))); | 815 | __attribute__ ((format (printf, 3, 4))); |