]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
sysfs: group.c: fix up broken string coding style
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 21 Aug 2013 23:10:02 +0000 (16:10 -0700)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Wed, 21 Aug 2013 23:10:02 +0000 (16:10 -0700)
checkpatch complains about the broken string in the file, and it's
correct, so fix it up.

Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
fs/sysfs/group.c

index f4a9d221cbe61816bad4ca07f4696572efcb2cf6..642700131dd5ea219f1b491faad9290fd8b98665 100644 (file)
@@ -198,8 +198,9 @@ void sysfs_remove_group(struct kobject *kobj,
        if (grp->name) {
                sd = sysfs_get_dirent(dir_sd, NULL, grp->name);
                if (!sd) {
-                       WARN(!sd, KERN_WARNING "sysfs group %p not found for "
-                               "kobject '%s'\n", grp, kobject_name(kobj));
+                       WARN(!sd, KERN_WARNING
+                            "sysfs group %p not found for kobject '%s'\n",
+                            grp, kobject_name(kobj));
                        return;
                }
        } else