Commit 623050ae authored by Mauro Carvalho Chehab's avatar Mauro Carvalho Chehab

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: default avatarMauro Carvalho Chehab <mchehab+huawei@kernel.org>
parent 074b3aad
......@@ -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.
*
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment