sysfs: Improve readability by following the kernel coding style
authorMiquel Raynal <miquel.raynal@bootlin.com>
Wed, 14 Jun 2023 06:30:15 +0000 (08:30 +0200)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Thu, 15 Jun 2023 11:37:50 +0000 (13:37 +0200)
The purpose of the if/else block is to select the right sysfs directory
entry to be used for the files creation. At a first look when you have
the file in front of you, it really seems like the "create_files()"
lines right after the block are badly indented and the "else" does not
guard. In practice the code is correct but lacks curly brackets to show
where the big if/else block actually ends. Add these brackets to comply
with the current kernel coding style and to ease the understanding of
the whole logic.

Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com>
Message-ID: <20230614063018.2419043-2-miquel.raynal@bootlin.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
fs/sysfs/group.c

index eeb0e30..9903091 100644 (file)
@@ -142,8 +142,10 @@ static int internal_create_group(struct kobject *kobj, int update,
                                return PTR_ERR(kn);
                        }
                }
-       } else
+       } else {
                kn = kobj->sd;
+       }
+
        kernfs_get(kn);
        error = create_files(kn, kobj, uid, gid, grp, update);
        if (error) {