diff options
Diffstat (limited to 'include/linux/printk.h')
-rw-r--r-- | include/linux/printk.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/linux/printk.h b/include/linux/printk.h index baa3f97d8ce8..9b30871c9149 100644 --- a/include/linux/printk.h +++ b/include/linux/printk.h | |||
@@ -255,6 +255,11 @@ extern asmlinkage void dump_stack(void) __cold; | |||
255 | printk(KERN_NOTICE pr_fmt(fmt), ##__VA_ARGS__) | 255 | printk(KERN_NOTICE pr_fmt(fmt), ##__VA_ARGS__) |
256 | #define pr_info(fmt, ...) \ | 256 | #define pr_info(fmt, ...) \ |
257 | printk(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__) | 257 | printk(KERN_INFO pr_fmt(fmt), ##__VA_ARGS__) |
258 | /* | ||
259 | * Like KERN_CONT, pr_cont() should only be used when continuing | ||
260 | * a line with no newline ('\n') enclosed. Otherwise it defaults | ||
261 | * back to KERN_DEFAULT. | ||
262 | */ | ||
258 | #define pr_cont(fmt, ...) \ | 263 | #define pr_cont(fmt, ...) \ |
259 | printk(KERN_CONT fmt, ##__VA_ARGS__) | 264 | printk(KERN_CONT fmt, ##__VA_ARGS__) |
260 | 265 | ||