aboutsummaryrefslogtreecommitdiffstats
path: root/fs
diff options
context:
space:
mode:
authorGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-08-21 19:37:42 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-08-21 19:37:42 -0400
commit07ac62a604a8bfb23b1b8c1a07f29f6752bacdb7 (patch)
tree302fa0cfff88980d17731223b579660846408c4e /fs
parent37814ee0bac6ef5d2c008114eeb8ad03710ce119 (diff)
sysfs: file.c: fix up broken string warnings
This fixes the coding style warnings in fs/sysfs/file.c for broken strings across lines. Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'fs')
-rw-r--r--fs/sysfs/file.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/fs/sysfs/file.c b/fs/sysfs/file.c
index 8c52e5e5ddc3..15ef5eb13663 100644
--- a/fs/sysfs/file.c
+++ b/fs/sysfs/file.c
@@ -336,8 +336,9 @@ static int sysfs_open_file(struct inode *inode, struct file *file)
336 if (kobj->ktype && kobj->ktype->sysfs_ops) 336 if (kobj->ktype && kobj->ktype->sysfs_ops)
337 ops = kobj->ktype->sysfs_ops; 337 ops = kobj->ktype->sysfs_ops;
338 else { 338 else {
339 WARN(1, KERN_ERR "missing sysfs attribute operations for " 339 WARN(1, KERN_ERR
340 "kobject: %s\n", kobject_name(kobj)); 340 "missing sysfs attribute operations for kobject: %s\n",
341 kobject_name(kobj));
341 goto err_out; 342 goto err_out;
342 } 343 }
343 344
@@ -515,8 +516,9 @@ static int sysfs_attr_ns(struct kobject *kobj, const struct attribute *attr,
515 ns = ops->namespace(kobj, attr); 516 ns = ops->namespace(kobj, attr);
516out: 517out:
517 if (err) { 518 if (err) {
518 WARN(1, KERN_ERR "missing sysfs namespace attribute operation for " 519 WARN(1, KERN_ERR
519 "kobject: %s\n", kobject_name(kobj)); 520 "missing sysfs namespace attribute operation for kobject: %s\n",
521 kobject_name(kobj));
520 } 522 }
521 *pns = ns; 523 *pns = ns;
522 return err; 524 return err;