aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFabian Frederick <[email protected]>2014-08-06 16:03:52 -0700
committerLinus Torvalds <[email protected]>2014-08-06 18:01:13 -0700
commitc811f5f41e37d16b2839988426ffde78d2273d48 (patch)
tree48be74be4d367e9fe26cde60fd21a0be5b68d176
parent14694888db2c1f7ba1f2e6172df45813b4db7880 (diff)
fs/squashfs/super.c: logging cleanup
- Convert printk to pr_foo() - Add pr_fmt for future logging entries - Coalesce formats Signed-off-by: Fabian Frederick <[email protected]> Cc: Phillip Lougher <[email protected]> Signed-off-by: Andrew Morton <[email protected]> Signed-off-by: Linus Torvalds <[email protected]>
-rw-r--r--fs/squashfs/super.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/fs/squashfs/super.c b/fs/squashfs/super.c
index 031c8d67fd51..5056babe00df 100644
--- a/fs/squashfs/super.c
+++ b/fs/squashfs/super.c
@@ -27,6 +27,8 @@
* the filesystem.
*/
+#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
+
#include <linux/fs.h>
#include <linux/vfs.h>
#include <linux/slab.h>
@@ -448,8 +450,7 @@ static int __init init_squashfs_fs(void)
return err;
}
- printk(KERN_INFO "squashfs: version 4.0 (2009/01/31) "
- "Phillip Lougher\n");
+ pr_info("version 4.0 (2009/01/31) Phillip Lougher\n");
return 0;
}