From: Kit Dallege Date: Sun, 15 Mar 2026 15:34:14 +0000 (+0100) Subject: bitops: fix kernel-doc parameter name for parity8() X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7b52b262f8a8cd96dac33721389a884420c18365;p=thirdparty%2Fkernel%2Flinux.git 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 Signed-off-by: Kit Dallege Signed-off-by: Yury Norov --- diff --git a/include/linux/bitops.h b/include/linux/bitops.h index ea7898cc59039..1fe46703792f6 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. *