diff options
author | Jonathan Neuschäfer <j.neuschaefer@gmx.net> | 2022-06-10 01:41:10 +0200 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2022-06-11 14:16:42 -1000 |
commit | 8bee9dd953b69c634d1c9a3241a8b357469ad4aa (patch) | |
tree | 98ec38152c3995ba537fd4b58b1e81dd7152b2cd | |
parent | 873a400938b31a1e443c4d94b560b78300787540 (diff) | |
download | linux-8bee9dd953b69c634d1c9a3241a8b357469ad4aa.tar.bz2 |
workqueue: Switch to new kerneldoc syntax for named variable macro argument
The syntax without dots is available since commit 43756e347f21
("scripts/kernel-doc: Add support for named variable macro arguments").
The same HTML output is produced with and without this patch.
Signed-off-by: Jonathan Neuschäfer <j.neuschaefer@gmx.net>
Acked-by: Tejun Heo <tj@kernel.org>
Signed-off-by: Tejun Heo <tj@kernel.org>
-rw-r--r-- | include/linux/workqueue.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/workqueue.h b/include/linux/workqueue.h index e1f1c8b1121b..62e75dd40d9a 100644 --- a/include/linux/workqueue.h +++ b/include/linux/workqueue.h @@ -406,7 +406,7 @@ alloc_workqueue(const char *fmt, unsigned int flags, int max_active, ...); * alloc_ordered_workqueue - allocate an ordered workqueue * @fmt: printf format for the name of the workqueue * @flags: WQ_* flags (only WQ_FREEZABLE and WQ_MEM_RECLAIM are meaningful) - * @args...: args for @fmt + * @args: args for @fmt * * Allocate an ordered workqueue. An ordered workqueue executes at * most one work item at any given time in the queued order. They are |