OSDN Git Service
(root)
/
android-x86
/
kernel.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
995d8ed
)
sysfs: group.c: fix up broken string coding style
author
Greg Kroah-Hartman
<gregkh@linuxfoundation.org>
Wed, 21 Aug 2013 23:10:02 +0000
(16:10 -0700)
committer
Greg 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
patch
|
blob
|
history
diff --git
a/fs/sysfs/group.c
b/fs/sysfs/group.c
index
f4a9d22
..
6427001
100644
(file)
--- a/
fs/sysfs/group.c
+++ b/
fs/sysfs/group.c
@@
-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