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.

Drivers: hv: fix missing kernel-doc description for 'size' in request_arr_init()

Add missing kernel-doc entry for the @size parameter in
request_arr_init(), fixing the following documentation warning
reported by the kernel test robot and detected via kernel-doc:

Warning: drivers/hv/channel.c:595 function parameter 'size' not described in 'request_arr_init'

Reported-by: kernel test robot <lkp@intel.com>
Closes: https://lore.kernel.org/oe-kbuild-all/202503021934.wH1BERla-lkp@intel.com
Signed-off-by: Kriish Sharma <kriish.sharma2006@gmail.com>
Reviewed-by: Easwar Hariharan <easwar.hariharan@linux.microsoft.com>
Signed-off-by: Wei Liu <wei.liu@kernel.org>

authored by

Kriish Sharma and committed by
Wei Liu
6626f815 77c860d2

+1 -1
+1 -1
drivers/hv/channel.c
··· 590 590 * keeps track of the next available slot in the array. Initially, each 591 591 * slot points to the next one (as in a Linked List). The last slot 592 592 * does not point to anything, so its value is U64_MAX by default. 593 - * @size The size of the array 593 + * @size: The size of the array 594 594 */ 595 595 static u64 *request_arr_init(u32 size) 596 596 {