summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@linux-foundation.org>2024-09-07 02:48:24 +0200
committerLinus Torvalds <torvalds@linux-foundation.org>2024-09-07 02:48:24 +0200
commitb31c4492884252a8360f312a0ac2049349ddf603 (patch)
tree0789bbf4c0b161605a2ed0190b5cdaec1ffaaff4
parentMerge tag 'pci-v6.11-fixes-3' of git://git.kernel.org/pub/scm/linux/kernel/gi... (diff)
parentkunit: Fix missing kerneldoc comment (diff)
downloadlinux-b31c4492884252a8360f312a0ac2049349ddf603.tar.xz
linux-b31c4492884252a8360f312a0ac2049349ddf603.zip
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.h1
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.