Commit 6485536b authored by Randy Dunlap's avatar Randy Dunlap Committed by Linus Torvalds

printk: fix new kernel-doc warnings

Fix kernel-doc warnings in printk.c:

Warning(kernel/printk.c:1422): No description found for parameter 'dumper'
Warning(kernel/printk.c:1422): Excess function parameter 'dump' description in 'kmsg_dump_register'
Warning(kernel/printk.c:1451): No description found for parameter 'dumper'
Warning(kernel/printk.c:1451): Excess function parameter 'dump' description in 'kmsg_dump_unregister'
Signed-off-by: default avatarRandy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent 65a80b4c
...@@ -1412,7 +1412,7 @@ static LIST_HEAD(dump_list); ...@@ -1412,7 +1412,7 @@ static LIST_HEAD(dump_list);
/** /**
* kmsg_dump_register - register a kernel log dumper. * kmsg_dump_register - register a kernel log dumper.
* @dump: pointer to the kmsg_dumper structure * @dumper: pointer to the kmsg_dumper structure
* *
* Adds a kernel log dumper to the system. The dump callback in the * Adds a kernel log dumper to the system. The dump callback in the
* structure will be called when the kernel oopses or panics and must be * structure will be called when the kernel oopses or panics and must be
...@@ -1442,7 +1442,7 @@ EXPORT_SYMBOL_GPL(kmsg_dump_register); ...@@ -1442,7 +1442,7 @@ EXPORT_SYMBOL_GPL(kmsg_dump_register);
/** /**
* kmsg_dump_unregister - unregister a kmsg dumper. * kmsg_dump_unregister - unregister a kmsg dumper.
* @dump: pointer to the kmsg_dumper structure * @dumper: pointer to the kmsg_dumper structure
* *
* Removes a dump device from the system. Returns zero on success and * Removes a dump device from the system. Returns zero on success and
* %-EINVAL otherwise. * %-EINVAL otherwise.
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment