Skip to content

Commit 08caed3

Browse files
author
Robert Foss
committed
workqueue: Fix another htmldocs build warning
JIRA: https://issues.redhat.com/browse/RHEL-53569 Upstream Status: v6.12-rc1 commit d156263 Author: Tejun Heo <tj@kernel.org> AuthorDate: Wed Aug 21 06:37:39 2024 -1000 Commit: Tejun Heo <tj@kernel.org> CommitDate: Wed Aug 21 06:37:39 2024 -1000 Fix htmldocs build warning introduced by 9b59a85 ("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> Signed-off-by: Robert Foss <rfoss@redhat.com>
1 parent 85c4f6b commit 08caed3

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

include/linux/workqueue.h

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -537,7 +537,8 @@ alloc_workqueue_lockdep_map(const char *fmt, unsigned int flags, int max_active,
537537
* Pointer to the allocated workqueue on success, %NULL on failure.
538538
*/
539539
#define alloc_ordered_workqueue_lockdep_map(fmt, flags, lockdep_map, args...) \
540-
alloc_workqueue_lockdep_map(fmt, WQ_UNBOUND | __WQ_ORDERED | (flags), 1, lockdep_map, ##args)
540+
alloc_workqueue_lockdep_map(fmt, WQ_UNBOUND | __WQ_ORDERED | (flags), \
541+
1, lockdep_map, ##args)
541542
#endif
542543

543544
/**

0 commit comments

Comments
 (0)