diff options
author | Mauro Carvalho Chehab <mchehab@kernel.org> | 2022-07-02 12:07:40 +0100 |
---|---|---|
committer | Shuah Khan <skhan@linuxfoundation.org> | 2022-07-08 11:22:47 -0600 |
commit | 7b2379454b9a72fece618319acea8d33497d2299 (patch) | |
tree | 6d1dbf6ef20580b413e78ed0567afa398906c9ec /include/kunit | |
parent | 6fc3a8636a7b0f7dbd6d0a4e450e765dc17518d4 (diff) | |
download | linux-stable-7b2379454b9a72fece618319acea8d33497d2299.tar.gz linux-stable-7b2379454b9a72fece618319acea8d33497d2299.tar.bz2 linux-stable-7b2379454b9a72fece618319acea8d33497d2299.zip |
kunit: test.h: fix a kernel-doc markup
Fix this kernel-doc warning:
Documentation/dev-tools/kunit/api/test:9: ./include/kunit/test.h:323: WARNING: Inline interpreted text or phrase reference start-string without end-string.
Functions should use func_name() on kernel-doc markups, as
documented at:
Documentation/doc-guide/kernel-doc.rst
Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
Reviewed-by: David Gow <davidgow@google.com>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
Diffstat (limited to 'include/kunit')
-rw-r--r-- | include/kunit/test.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/include/kunit/test.h b/include/kunit/test.h index ccae848720dc..7646d1bcf685 100644 --- a/include/kunit/test.h +++ b/include/kunit/test.h @@ -321,7 +321,7 @@ static inline int kunit_run_all_tests(void) * * @__suites: a statically allocated list of &struct kunit_suite. * - * This functions identically as &kunit_test_suites() except that it suppresses + * This functions identically as kunit_test_suites() except that it suppresses * modpost warnings for referencing functions marked __init or data marked * __initdata; this is OK because currently KUnit only runs tests upon boot * during the init phase or upon loading a module during the init phase. |