Commit 51da7f68 authored by Tejun Heo's avatar Tejun Heo

workqueue: Use "@..." in function comment to describe variable length argument

Previously, it was using "remaining args" without leading "@" which isn't
valid. Let's follow snprintf()'s example and use "@...".
Signed-off-by: default avatarTejun Heo <tj@kernel.org>
Reported-by: default avatarStephen Rothwell <sfr@canb.auug.org.au>
parent 31103f40
...@@ -473,7 +473,7 @@ void workqueue_softirq_dead(unsigned int cpu); ...@@ -473,7 +473,7 @@ void workqueue_softirq_dead(unsigned int cpu);
* @fmt: printf format for the name of the workqueue * @fmt: printf format for the name of the workqueue
* @flags: WQ_* flags * @flags: WQ_* flags
* @max_active: max in-flight work items, 0 for default * @max_active: max in-flight work items, 0 for default
* remaining args: args for @fmt * @...: args for @fmt
* *
* For a per-cpu workqueue, @max_active limits the number of in-flight work * For a per-cpu workqueue, @max_active limits the number of in-flight work
* items for each CPU. e.g. @max_active of 1 indicates that each CPU can be * items for each CPU. e.g. @max_active of 1 indicates that each CPU can be
......
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