backlight: generic_bl: use pr_info() instead of printk()
authorJingoo Han <[email protected]>
Tue, 29 May 2012 22:07:18 +0000 (15:07 -0700)
committerLinus Torvalds <[email protected]>
Tue, 29 May 2012 23:22:29 +0000 (16:22 -0700)
Use pr_info() instead of printk() to allow dynamic debugging.  The pr_fmt
prefix for pr_ macros is used.  Also fix checkpatch warnings as below:

WARNING: printk() should include KERN_ facility level

[[email protected]: use KBUILD_MODNAME, per Joe]
Signed-off-by: Jingoo Han <[email protected]>
Cc: Richard Purdie <[email protected]>
Cc: Joe Perches <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
drivers/video/backlight/generic_bl.c

index 9ce6170c186079414dcb62123100e7786b032721..8c660fcd250da09f446e07f9e0dfce3b5677a128 100644 (file)
@@ -9,6 +9,8 @@
  *
  */
 
+#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
+
 #include <linux/module.h>
 #include <linux/kernel.h>
 #include <linux/init.h>
@@ -106,7 +108,7 @@ static int genericbl_probe(struct platform_device *pdev)
 
        generic_backlight_device = bd;
 
-       printk("Generic Backlight Driver Initialized.\n");
+       pr_info("Generic Backlight Driver Initialized.\n");
        return 0;
 }
 
@@ -120,7 +122,7 @@ static int genericbl_remove(struct platform_device *pdev)
 
        backlight_device_unregister(bd);
 
-       printk("Generic Backlight Driver Unloaded\n");
+       pr_info("Generic Backlight Driver Unloaded\n");
        return 0;
 }