summaryrefslogtreecommitdiff
path: root/include/linux
diff options
context:
space:
mode:
authorKit Dallege <xaum.io@gmail.com>2026-03-15 16:34:14 +0100
committerYury Norov <ynorov@nvidia.com>2026-03-23 13:33:51 -0400
commit7b52b262f8a8cd96dac33721389a884420c18365 (patch)
treeba239ae7048ee9767d94d7578f7e1f3102d6143a /include/linux
parentbe56db15fcce8bb8bd85f236382276d52ce73d08 (diff)
bitops: fix kernel-doc parameter name for parity8()
The kernel-doc comment for parity8() documents the parameter as @value but the actual parameter name is @val. Fix the mismatch. Assisted-by: Claude <noreply@anthropic.com> Signed-off-by: Kit Dallege <xaum.io@gmail.com> Signed-off-by: Yury Norov <ynorov@nvidia.com>
Diffstat (limited to 'include/linux')
-rw-r--r--include/linux/bitops.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/linux/bitops.h b/include/linux/bitops.h
index ea7898cc5903..1fe46703792f 100644
--- a/include/linux/bitops.h
+++ b/include/linux/bitops.h
@@ -230,7 +230,7 @@ static inline int get_count_order_long(unsigned long l)
/**
* parity8 - get the parity of an u8 value
- * @value: the value to be examined
+ * @val: the value to be examined
*
* Determine the parity of the u8 argument.
*