diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2024-09-07 03:48:24 +0300 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2024-09-07 03:48:24 +0300 |
commit | b31c4492884252a8360f312a0ac2049349ddf603 (patch) | |
tree | 0789bbf4c0b161605a2ed0190b5cdaec1ffaaff4 | |
parent | 487ee43bac846446fb3e832436bdedd7acb4fe46 (diff) | |
parent | 12cb32a52eb607dc4d0e45fe6f4cf946d08da0fd (diff) | |
download | linux-b31c4492884252a8360f312a0ac2049349ddf603.tar.xz |
Merge tag 'linux_kselftest-kunit-fixes-6.11-rc7-2' of git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest
PullKUnit fix from Shuah Khan:
"Fix to a missing function parameter warning found during documentation
build in linux-next"
* tag 'linux_kselftest-kunit-fixes-6.11-rc7-2' of git://git.kernel.org/pub/scm/linux/kernel/git/shuah/linux-kselftest:
kunit: Fix missing kerneldoc comment
-rw-r--r-- | include/kunit/test.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/kunit/test.h b/include/kunit/test.h index 5ac237c949a0..34b71e42fb10 100644 --- a/include/kunit/test.h +++ b/include/kunit/test.h @@ -484,6 +484,7 @@ static inline void *kunit_kcalloc(struct kunit *test, size_t n, size_t size, gfp /** * kunit_kfree_const() - conditionally free test managed memory + * @test: The test context object. * @x: pointer to the memory * * Calls kunit_kfree() only if @x is not in .rodata section. |