diff options
author | Mauro Carvalho Chehab <mchehab+huawei@kernel.org> | 2020-09-09 12:07:49 +0200 |
---|---|---|
committer | Mauro Carvalho Chehab <mchehab+huawei@kernel.org> | 2020-10-15 07:49:48 +0200 |
commit | 623050ae373162a65973f62c128eabe3ec288c4d (patch) | |
tree | c357c28a87dfdc35885bafba4ff74dd03ecf712f /include/kunit | |
parent | 074b3aad307de6126fbac1fff4996d1034b48fee (diff) | |
download | linux-623050ae373162a65973f62c128eabe3ec288c4d.tar.bz2 |
kunit: test.h: fix a bad kernel-doc markup
As warned by:
./include/kunit/test.h:504: WARNING: Block quote ends without a blank line; unexpected unindent.
The right way to describe a function is:
name - description
Instead, kunit_remove_resource was using:
name: description
Causing it to be improperly parsed.
Signed-off-by: Mauro Carvalho Chehab <mchehab+huawei@kernel.org>
Diffstat (limited to 'include/kunit')
-rw-r--r-- | include/kunit/test.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/include/kunit/test.h b/include/kunit/test.h index dba5867c2621..037de35ae0ff 100644 --- a/include/kunit/test.h +++ b/include/kunit/test.h @@ -503,8 +503,8 @@ static inline int kunit_destroy_named_resource(struct kunit *test, } /** - * kunit_remove_resource: remove resource from resource list associated with - * test. + * kunit_remove_resource() - remove resource from resource list associated with + * test. * @test: The test context object. * @res: The resource to be removed. * |