]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
bitops: fix kernel-doc parameter name for parity8()
authorKit Dallege <xaum.io@gmail.com>
Sun, 15 Mar 2026 15:34:14 +0000 (16:34 +0100)
committerYury Norov <ynorov@nvidia.com>
Mon, 23 Mar 2026 17:33:51 +0000 (13:33 -0400)
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>
include/linux/bitops.h

index ea7898cc590396e4cc1aa807ba0369a7f8d424ad..1fe46703792f60918f879d871dcb8b89669c3049 100644 (file)
@@ -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.
  *