msm: display: change normal operation prints to pr_debug
There is no need to print every time the display turns on or off. Change
these prints to pr_debugs so they can still be used for debugging if
necessary.
Change-Id: I515c30af1127baea7be8540877075ceb9bbd33ab
Signed-off-by: Jeff Ohlstein <johlstei@codeaurora.org>
diff --git a/arch/arm/mach-msm/board-8960-display.c b/arch/arm/mach-msm/board-8960-display.c
index 3c7878d..4ceb067 100644
--- a/arch/arm/mach-msm/board-8960-display.c
+++ b/arch/arm/mach-msm/board-8960-display.c
@@ -156,7 +156,7 @@
static int gpio21, gpio24, gpio43;
int rc;
- pr_info("%s: on=%d\n", __func__, on);
+ pr_debug("%s: on=%d\n", __func__, on);
gpio21 = PM8921_GPIO_PM_TO_SYS(21); /* disp power enable_n */
gpio43 = PM8921_GPIO_PM_TO_SYS(43); /* Displays Enable (rst_n)*/
@@ -266,7 +266,7 @@
static int gpio43;
int rc;
- pr_info("%s: state : %d\n", __func__, on);
+ pr_debug("%s: state : %d\n", __func__, on);
if (!dsi_power_on) {
@@ -386,7 +386,7 @@
{
int ret;
- pr_info("%s: on=%d\n", __func__, on);
+ pr_debug("%s: on=%d\n", __func__, on);
if (machine_is_msm8960_liquid())
ret = mipi_dsi_liquid_panel_power(on);