diff options
author | Randy Dunlap <rdunlap@xenotime.net> | 2012-06-30 18:37:24 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2012-06-30 18:56:40 -0400 |
commit | 4f0f4af59cb07bcf44d3c07a9e8c26df54d9fff8 (patch) | |
tree | d30f6dda504fc62a20b40b28912746c164630941 /kernel/printk.c | |
parent | 87fac288083db40b5d5ab845393be268357c8827 (diff) |
printk.c: fix kernel-doc warnings
Fix kernel-doc warnings in printk.c: use correct parameter name.
Warning(kernel/printk.c:2429): No description found for parameter 'buf'
Warning(kernel/printk.c:2429): Excess function parameter 'line' description in 'kmsg_dump_get_buffer'
Signed-off-by: Randy Dunlap <rdunlap@xenotime.net>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'kernel/printk.c')
-rw-r--r-- | kernel/printk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/printk.c b/kernel/printk.c index 5ae6b09e3805..dba18211685e 100644 --- a/kernel/printk.c +++ b/kernel/printk.c | |||
@@ -2538,7 +2538,7 @@ EXPORT_SYMBOL_GPL(kmsg_dump_get_line); | |||
2538 | * kmsg_dump_get_buffer - copy kmsg log lines | 2538 | * kmsg_dump_get_buffer - copy kmsg log lines |
2539 | * @dumper: registered kmsg dumper | 2539 | * @dumper: registered kmsg dumper |
2540 | * @syslog: include the "<4>" prefixes | 2540 | * @syslog: include the "<4>" prefixes |
2541 | * @line: buffer to copy the line to | 2541 | * @buf: buffer to copy the line to |
2542 | * @size: maximum size of the buffer | 2542 | * @size: maximum size of the buffer |
2543 | * @len: length of line placed into buffer | 2543 | * @len: length of line placed into buffer |
2544 | * | 2544 | * |