Skip to content

Commit 51da7f6

Browse files
committed
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: Tejun Heo <[email protected]> Reported-by: Stephen Rothwell <[email protected]>
1 parent 31103f4 commit 51da7f6

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

include/linux/workqueue.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -473,7 +473,7 @@ void workqueue_softirq_dead(unsigned int cpu);
473473
* @fmt: printf format for the name of the workqueue
474474
* @flags: WQ_* flags
475475
* @max_active: max in-flight work items, 0 for default
476-
* remaining args: args for @fmt
476+
* @...: args for @fmt
477477
*
478478
* For a per-cpu workqueue, @max_active limits the number of in-flight work
479479
* items for each CPU. e.g. @max_active of 1 indicates that each CPU can be

0 commit comments

Comments
 (0)