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:
b2dcd7b
)
drivers/video/backlight/omap1_bl.c: use dev_info() instead of pr_info()
author
Jingoo Han
<
[email protected]
>
Mon, 29 Apr 2013 23:17:32 +0000
(16:17 -0700)
committer
Linus Torvalds
<
[email protected]
>
Tue, 30 Apr 2013 01:28:15 +0000
(18:28 -0700)
dev_info() is preferred to pr_info().
Signed-off-by: Jingoo Han <
[email protected]
>
Signed-off-by: Andrew Morton <
[email protected]
>
Signed-off-by: Linus Torvalds <
[email protected]
>
drivers/video/backlight/omap1_bl.c
patch
|
blob
|
history
diff --git
a/drivers/video/backlight/omap1_bl.c
b/drivers/video/backlight/omap1_bl.c
index 627110163067f85c3aa27c5aec66947e28789806..0aed176cd6a0c79617a5c1d303cb713c17c8d36c 100644
(file)
--- a/
drivers/video/backlight/omap1_bl.c
+++ b/
drivers/video/backlight/omap1_bl.c
@@
-18,8
+18,6
@@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
-#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
-
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/init.h>
@@
-170,7
+168,7
@@
static int omapbl_probe(struct platform_device *pdev)
dev->props.brightness = pdata->default_intensity;
omapbl_update_status(dev);
-
pr_info(
"OMAP LCD backlight initialised\n");
+
dev_info(&pdev->dev,
"OMAP LCD backlight initialised\n");
return 0;
}