diff options
author | Kriish Sharma <kriish.sharma2006@gmail.com> | 2025-09-22 12:26:06 +0000 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2025-09-22 05:37:20 -1000 |
commit | 0950c64ae38661bd97127e9aa0522f1624f82006 (patch) | |
tree | e85690732e4635614763dcdad83d92d65413ba09 | |
parent | dadb3ebcf395ebee3626d88ac7e5e234f15bae2c (diff) |
workqueue: fix texinfodocs warning for WQ_* flags reference
Sphinx emitted a warning during make texinfodocs:
WARNING: Inline literal start-string without end-string.
This was caused by the trailing '*' in "%WQ_*" being parsed as
reStructuredText markup in the kernel-doc comment.
Escape the '*' in the comment so that Sphinx treats it as a literal
character, resolving the warning.
Signed-off-by: Kriish Sharma <kriish.sharma2006@gmail.com>
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 71a9900c03c7..dabc351cc127 100644 --- a/include/linux/workqueue.h +++ b/include/linux/workqueue.h @@ -502,7 +502,7 @@ void workqueue_softirq_dead(unsigned int cpu); * min_active which is set to min(@max_active, %WQ_DFL_MIN_ACTIVE). This means * that the sum of per-node max_active's may be larger than @max_active. * - * For detailed information on %WQ_* flags, please refer to + * For detailed information on %WQ_\* flags, please refer to * Documentation/core-api/workqueue.rst. * * RETURNS: |