From: Kriish Sharma Date: Sat, 25 Oct 2025 12:07:07 +0000 (+0000) Subject: Drivers: hv: fix missing kernel-doc description for 'size' in request_arr_init() X-Git-Tag: v6.19-rc1~56^2~21 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=6626f815a1716259f161a4df8d105c9f0c8cbae9;p=thirdparty%2Fkernel%2Flinux.git 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 Closes: https://lore.kernel.org/oe-kbuild-all/202503021934.wH1BERla-lkp@intel.com Signed-off-by: Kriish Sharma Reviewed-by: Easwar Hariharan Signed-off-by: Wei Liu --- diff --git a/drivers/hv/channel.c b/drivers/hv/channel.c index 88485d255a422..6821f225248b1 100644 --- a/drivers/hv/channel.c +++ b/drivers/hv/channel.c @@ -590,7 +590,7 @@ EXPORT_SYMBOL_GPL(vmbus_establish_gpadl); * keeps track of the next available slot in the array. Initially, each * slot points to the next one (as in a Linked List). The last slot * does not point to anything, so its value is U64_MAX by default. - * @size The size of the array + * @size: The size of the array */ static u64 *request_arr_init(u32 size) {