Skip to content

Commit 8e88291

Browse files
t-8chJoelgranados
authored andcommitted
ipc: remove linebreaks from arguments of __register_sysctl_table
Calls to __register_sysctl_table will be validated by scripts/check-sysctl-docs. As this script is line-based remove the linebreak which would confuse the script. Signed-off-by: Thomas Weißschuh <[email protected]> Reviewed-by: Joel Granados <[email protected]> Signed-off-by: Joel Granados <[email protected]>
1 parent 0f6588b commit 8e88291

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

ipc/ipc_sysctl.c

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -259,8 +259,7 @@ bool setup_ipc_sysctls(struct ipc_namespace *ns)
259259
tbl[i].data = NULL;
260260
}
261261

262-
ns->ipc_sysctls = __register_sysctl_table(&ns->ipc_set,
263-
"kernel", tbl,
262+
ns->ipc_sysctls = __register_sysctl_table(&ns->ipc_set, "kernel", tbl,
264263
ARRAY_SIZE(ipc_sysctls));
265264
}
266265
if (!ns->ipc_sysctls) {

0 commit comments

Comments
 (0)