kunit: Fix missing kerneldoc comment

Add a missing kerneldoc comment for the 'test' test context parameter,
fixing the following warning:

include/kunit/test.h:492: warning: Function parameter or struct member 'test' not described in 'kunit_kfree_const'

Reported-by: Stephen Rothwell <sfr@canb.auug.org.au>
Closes: https://lore.kernel.org/lkml/20240827160631.67e121ed@canb.auug.org.au/
Fixes: f2c6dbd22017 ("kunit: Device wrappers should also manage driver name")
Signed-off-by: David Gow <davidgow@google.com>
Reviewed-by: Kees Cook <kees@kernel.org>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>

authored by David Gow and committed by Shuah Khan 12cb32a5 f2c6dbd2

+1
+1
include/kunit/test.h
··· 484 484 485 485 /** 486 486 * kunit_kfree_const() - conditionally free test managed memory 487 + * @test: The test context object. 487 488 * @x: pointer to the memory 488 489 * 489 490 * Calls kunit_kfree() only if @x is not in .rodata section.