summaryrefslogtreecommitdiffstats
path: root/include/linux/workqueue.h
diff options
context:
space:
mode:
authorTejun Heo <tj@kernel.org>2024-04-22 10:03:13 -1000
committerTejun Heo <tj@kernel.org>2024-04-22 10:08:04 -1000
commit51da7f68edae38e81543d57fd71811f7481c0472 (patch)
treee880e82ebe84269a06c16dd4d4d752b2770d5590 /include/linux/workqueue.h
parent31103f40b1b5d4382446b4d5af37e61dce31f8d5 (diff)
downloadlinux-51da7f68edae38e81543d57fd71811f7481c0472.tar.gz
linux-51da7f68edae38e81543d57fd71811f7481c0472.tar.bz2
linux-51da7f68edae38e81543d57fd71811f7481c0472.zip
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 <tj@kernel.org> Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Diffstat (limited to 'include/linux/workqueue.h')
-rw-r--r--include/linux/workqueue.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/workqueue.h b/include/linux/workqueue.h
index 2df1188c0f96..fb3993894536 100644
--- a/include/linux/workqueue.h
+++ b/include/linux/workqueue.h
@@ -473,7 +473,7 @@ void workqueue_softirq_dead(unsigned int cpu);
* @fmt: printf format for the name of the workqueue
* @flags: WQ_* flags
* @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
* items for each CPU. e.g. @max_active of 1 indicates that each CPU can be