From b318e78222e154685f0aad513cedd3d3ee0a9156 Mon Sep 17 00:00:00 2001 From: Petr Vorel Date: Fri, 19 Apr 2024 14:51:27 +0200 Subject: [PATCH] tst_test: Merge needs_cgroup_ctrls C comment into sphinx doc To follow other conventions for other struct members. Fixes: 6cf992812 ("include: doc: Convert comments into linuxdoc") Signed-off-by: Petr Vorel --- include/tst_test.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/include/tst_test.h b/include/tst_test.h index eaabe068085..be09bce270c 100644 --- a/include/tst_test.h +++ b/include/tst_test.h @@ -461,7 +461,8 @@ struct tst_ulimit_val { * @needs_cgroup_ver: If set the test will run only if the specified cgroup * version is present on the system. * - * @needs_cgroup_ctrls: List of cgroup controllers the test needs to run. + * @needs_cgroup_ctrls: A {} terminated array of cgroup controllers the test + * needs to run. */ struct tst_test { @@ -548,7 +549,6 @@ struct tst_ulimit_val { const enum tst_cg_ver needs_cgroup_ver; - /* {} terminated array of required CGroup controllers */ const char *const *needs_cgroup_ctrls; };