Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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>

authored by

Kit Dallege and committed by
Yury Norov
7b52b262 be56db15

+1 -1
+1 -1
include/linux/bitops.h
··· 230 230 231 231 /** 232 232 * parity8 - get the parity of an u8 value 233 - * @value: the value to be examined 233 + * @val: the value to be examined 234 234 * 235 235 * Determine the parity of the u8 argument. 236 236 *