Skip to content

Commit d156263

Browse files
committed
workqueue: Fix another htmldocs build warning
Fix htmldocs build warning introduced by 9b59a85 ("workqueue: Don't call va_start / va_end twice"). Signed-off-by: Tejun Heo <[email protected]> Reported-by: Stephen Rothwell <[email protected]> Cc: Matthew Brost <[email protected]>
1 parent 84c425b commit d156263

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

include/linux/workqueue.h

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -534,7 +534,7 @@ alloc_workqueue_lockdep_map(const char *fmt, unsigned int flags, int max_active,
534534
* @fmt: printf format for the name of the workqueue
535535
* @flags: WQ_* flags (only WQ_FREEZABLE and WQ_MEM_RECLAIM are meaningful)
536536
* @lockdep_map: user-defined lockdep_map
537-
* @...: args for @fmt
537+
* @args: args for @fmt
538538
*
539539
* Same as alloc_ordered_workqueue but with the a user-define lockdep_map.
540540
* 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,
544544
* Pointer to the allocated workqueue on success, %NULL on failure.
545545
*/
546546
#define alloc_ordered_workqueue_lockdep_map(fmt, flags, lockdep_map, args...) \
547-
alloc_workqueue_lockdep_map(fmt, WQ_UNBOUND | __WQ_ORDERED | (flags), 1, lockdep_map, ##args)
547+
alloc_workqueue_lockdep_map(fmt, WQ_UNBOUND | __WQ_ORDERED | (flags), \
548+
1, lockdep_map, ##args)
548549
#endif
549550

550551
/**

0 commit comments

Comments
 (0)