Skip to content

Commit

Permalink
fix checkpacth complains
Browse files Browse the repository at this point in the history
  • Loading branch information
vankoven committed Aug 30, 2024
1 parent d15de58 commit a7a174f
Showing 1 changed file with 9 additions and 11 deletions.
20 changes: 9 additions & 11 deletions src/kmod/rex.c
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/* SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause */
/* SPDX-FileCopyrightText: Copyright 2022 G-Core Labs S.A. */
// SPDX-License-Identifier: GPL-2.0 OR BSD-3-Clause
// SPDX-FileCopyrightText: Copyright 2022 G-Core Labs S.A.

#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt

Expand Down Expand Up @@ -501,15 +501,13 @@ static const struct config_item_type rex_group_type = {
};

static struct configfs_subsystem rex_configfs = {
.su_mutex = __MUTEX_INITIALIZER(rex_configfs.su_mutex),
.su_group =
{
.cg_item =
{
.ci_namebuf = "rex",
.ci_type = &rex_group_type,
},
},
.su_mutex = __MUTEX_INITIALIZER(rex_configfs.su_mutex),
.su_group = {
.cg_item = {
.ci_namebuf = "rex",
.ci_type = &rex_group_type,
},
},
};

static void banner(void)
Expand Down

0 comments on commit a7a174f

Please sign in to comment.