projects
/
linux.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0a359df
)
MLK-14800: fbdev: Refactor printed information
author
Robert Chiras
<robert.chiras@nxp.com>
Thu, 11 May 2017 12:57:06 +0000
(15:57 +0300)
committer
Nitin Garg
<nitin.garg@nxp.com>
Mon, 19 Mar 2018 20:22:17 +0000
(15:22 -0500)
Debug info should not be printed using pr_info on init. Use pr_debug
instead.
Signed-off-by: Robert Chiras <robert.chiras@nxp.com>
drivers/video/fbdev/mxc/adv7535.c
patch
|
blob
|
history
diff --git
a/drivers/video/fbdev/mxc/adv7535.c
b/drivers/video/fbdev/mxc/adv7535.c
index
27c99a2
..
3035dc5
100644
(file)
--- a/
drivers/video/fbdev/mxc/adv7535.c
+++ b/
drivers/video/fbdev/mxc/adv7535.c
@@
-326,13
+326,13
@@
static __init int adv7535_init(void)
{
u8 err = 0;
- pr_info("In adv7535_init\n");
err = i2c_add_driver(&adv7535_i2c_driver);
if (err != 0)
pr_err("%s: i2c driver register failed, error = %d\n",
__func__, err);
+ pr_debug("%s (ret=%d)\n", __func__, err);
return err;
}