diff options
author | Wang Honghui <honghui.wang@ucas.com.cn> | 2022-11-22 16:50:36 +0800 |
---|---|---|
committer | Petr Mladek <pmladek@suse.com> | 2022-11-22 12:10:15 +0100 |
commit | 7b0592a23e4f27196f4ea207a926838e7651c5b5 (patch) | |
tree | 9a9bdaa06fa9d0075c7733a6777cde3915bbf5d9 /kernel/printk | |
parent | fd070e8ceb908cdf69cb2369f65831b6f11bdf6c (diff) |
printk: fix a typo of comment
Fix a typo of comment
Signed-off-by: Wang Honghui <honghui.wang@ucas.com.cn>
Reviewed-by: John Ogness <john.ogness@linutronix.de>
Signed-off-by: Petr Mladek <pmladek@suse.com>
Link: https://lore.kernel.org/r/77522C532189E547+Y3yG91g6XALbtdJr@TP-P15V.lan
Link: https://lore.kernel.org/r/0C7C980DB815FAE1+Y3yNXJCqZ3Nzxa5V@TP-P15V.lan
Diffstat (limited to 'kernel/printk')
-rw-r--r-- | kernel/printk/printk_ringbuffer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/printk/printk_ringbuffer.c b/kernel/printk/printk_ringbuffer.c index 2b7b6ddab4f7..2dc4d5a1f1ff 100644 --- a/kernel/printk/printk_ringbuffer.c +++ b/kernel/printk/printk_ringbuffer.c @@ -203,7 +203,7 @@ * prb_rec_init_wr(&r, 5); * * // try to extend, but only if it does not exceed 32 bytes - * if (prb_reserve_in_last(&e, &test_rb, &r, printk_caller_id()), 32) { + * if (prb_reserve_in_last(&e, &test_rb, &r, printk_caller_id(), 32)) { * snprintf(&r.text_buf[r.info->text_len], * r.text_buf_size - r.info->text_len, "hello"); * |