sysfs: group.c: fix up broken string coding style
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>
This commit is contained in:
parent
995d8ed943
commit
16aebf1c5d
fs/sysfs
|
@ -198,8 +198,9 @@ void sysfs_remove_group(struct kobject *kobj,
|
||||||
if (grp->name) {
|
if (grp->name) {
|
||||||
sd = sysfs_get_dirent(dir_sd, NULL, grp->name);
|
sd = sysfs_get_dirent(dir_sd, NULL, grp->name);
|
||||||
if (!sd) {
|
if (!sd) {
|
||||||
WARN(!sd, KERN_WARNING "sysfs group %p not found for "
|
WARN(!sd, KERN_WARNING
|
||||||
"kobject '%s'\n", grp, kobject_name(kobj));
|
"sysfs group %p not found for kobject '%s'\n",
|
||||||
|
grp, kobject_name(kobj));
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
} else
|
} else
|
||||||
|
|
Loading…
Reference in New Issue