fs/squashfs/super.c: logging cleanup
authorFabian Frederick <fabf@skynet.be>
Wed, 6 Aug 2014 23:03:52 +0000 (16:03 -0700)
committerMohamad Ayyash <mkayyash@google.com>
Wed, 4 Mar 2015 19:27:19 +0000 (11:27 -0800)
- Convert printk to pr_foo()
- Add pr_fmt for future logging entries
- Coalesce formats

Signed-off-by: Fabian Frederick <fabf@skynet.be>
Cc: Phillip Lougher <phillip@squashfs.org.uk>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
fs/squashfs/super.c

index 031c8d67fd5178bb5afca2b04c71637254b46873..5056babe00df93249465c22b8b6dc6d0ebc1723d 100644 (file)
@@ -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;
 }