projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
31e6432
)
backlight: generic_bl: use pr_info() instead of printk()
author
Jingoo Han
<
[email protected]
>
Tue, 29 May 2012 22:07:18 +0000
(15:07 -0700)
committer
Linus 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
patch
|
blob
|
history
diff --git
a/drivers/video/backlight/generic_bl.c
b/drivers/video/backlight/generic_bl.c
index 9ce6170c186079414dcb62123100e7786b032721..8c660fcd250da09f446e07f9e0dfce3b5677a128 100644
(file)
--- a/
drivers/video/backlight/generic_bl.c
+++ b/
drivers/video/backlight/generic_bl.c
@@
-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;
- pr
intk
("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);
- pr
intk
("Generic Backlight Driver Unloaded\n");
+ pr
_info
("Generic Backlight Driver Unloaded\n");
return 0;
}