Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

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>

+2 -2
+2 -2
include/kunit/test.h
··· 503 503 } 504 504 505 505 /** 506 - * kunit_remove_resource: remove resource from resource list associated with 507 - * test. 506 + * kunit_remove_resource() - remove resource from resource list associated with 507 + * test. 508 508 * @test: The test context object. 509 509 * @res: The resource to be removed. 510 510 *