mirror of
https://github.com/torvalds/linux.git
synced 2026-03-08 01:04:41 +01:00
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>
This commit is contained in:
parent
77c860d2db
commit
6626f815a1
1 changed files with 1 additions and 1 deletions
|
|
@ -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)
|
||||
{
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue