summaryrefslogtreecommitdiff
path: root/drivers/video
diff options
context:
space:
mode:
authorRobert Chiras <robert.chiras@nxp.com>2017-05-11 15:59:07 +0300
committerAnson Huang <Anson.Huang@nxp.com>2017-06-09 22:22:38 +0800
commite35e7bdd8818f801db29480accb989a11e62ea1a (patch)
tree2c1f3052fcb35fcab2faad9c3c0ed3f7d2e6716b /drivers/video
parent564463cb07f83928c5d57966af5ff2e6fa42d750 (diff)
MLK-14800: fbdev: Refactor printed information
Debug info should not be printed using pr_info on init. Use pr_debug instead. Also, use the driver name, since there is more than one MIPI DSI driver. Signed-off-by: Robert Chiras <robert.chiras@nxp.com>
Diffstat (limited to 'drivers/video')
-rw-r--r--drivers/video/fbdev/mxc/mipi_dsi.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/video/fbdev/mxc/mipi_dsi.c b/drivers/video/fbdev/mxc/mipi_dsi.c
index d0f064e8f4cb..68a9bfa2aa9f 100644
--- a/drivers/video/fbdev/mxc/mipi_dsi.c
+++ b/drivers/video/fbdev/mxc/mipi_dsi.c
@@ -1022,7 +1022,7 @@ static int __init mipi_dsi_init(void)
pr_err("mipi_dsi_driver register failed\n");
return -ENODEV;
}
- pr_info("MIPI DSI driver module loaded\n");
+ pr_debug("MIPI DSI driver module loaded: %s\n", mipi_dsi_driver.driver.name);
return 0;
}