]> www.infradead.org Git - users/willy/xarray.git/commitdiff
workqueue: Fix another htmldocs build warning
authorTejun Heo <tj@kernel.org>
Wed, 21 Aug 2024 16:37:39 +0000 (06:37 -1000)
committerTejun Heo <tj@kernel.org>
Wed, 21 Aug 2024 16:37:39 +0000 (06:37 -1000)
Fix htmldocs build warning introduced by 9b59a85a84dc ("workqueue: Don't
call va_start / va_end twice").

Signed-off-by: Tejun Heo <tj@kernel.org>
Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Cc: Matthew Brost <matthew.brost@intel.com>
include/linux/workqueue.h

index f3cc15940b4d1a6ee2b6658ea624b66ebef30f63..59c2695e12e7674d5bc4cdd1fb416074374f981c 100644 (file)
@@ -534,7 +534,7 @@ alloc_workqueue_lockdep_map(const char *fmt, unsigned int flags, int max_active,
  * @fmt: printf format for the name of the workqueue
  * @flags: WQ_* flags (only WQ_FREEZABLE and WQ_MEM_RECLAIM are meaningful)
  * @lockdep_map: user-defined lockdep_map
- * @...: args for @fmt
+ * @args: args for @fmt
  *
  * Same as alloc_ordered_workqueue but with the a user-define lockdep_map.
  * Useful for workqueues created with the same purpose and to avoid leaking a
@@ -544,7 +544,8 @@ alloc_workqueue_lockdep_map(const char *fmt, unsigned int flags, int max_active,
  * Pointer to the allocated workqueue on success, %NULL on failure.
  */
 #define alloc_ordered_workqueue_lockdep_map(fmt, flags, lockdep_map, args...)  \
-       alloc_workqueue_lockdep_map(fmt, WQ_UNBOUND | __WQ_ORDERED | (flags), 1, lockdep_map, ##args)
+       alloc_workqueue_lockdep_map(fmt, WQ_UNBOUND | __WQ_ORDERED | (flags),   \
+                                   1, lockdep_map, ##args)
 #endif
 
 /**