summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorXiaoming Zhou <zhoux@codeaurora.org>2013-10-31 14:02:48 -0400
committerDavid Keitel <dkeitel@codeaurora.org>2016-03-23 20:22:53 -0700
commit046cad6c27814752cc5a87a2015cb23fe9cb6ae2 (patch)
treeca2cb32fa8136bc842d3795945727094d98d27f8
parent5053cb23f27c6a08365540d81dfdba44b31309f9 (diff)
msm: mdss: update for error logging
Use pr_err instead of pr_debug for DSI error status logging. Change-Id: I9f2a21ada466681844f3c7d3e5a6545126ecba2b Signed-off-by: Xiaoming Zhou <zhoux@codeaurora.org>
-rw-r--r--drivers/video/fbdev/msm/dsi_host_v2.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/drivers/video/fbdev/msm/dsi_host_v2.c b/drivers/video/fbdev/msm/dsi_host_v2.c
index 62d81f945a55..0f1c51ad5a25 100644
--- a/drivers/video/fbdev/msm/dsi_host_v2.c
+++ b/drivers/video/fbdev/msm/dsi_host_v2.c
@@ -77,7 +77,7 @@ void msm_dsi_ack_err_status(unsigned char *ctrl_base)
if (status) {
MIPI_OUTP(ctrl_base + DSI_ACK_ERR_STATUS, status);
- pr_debug("%s: status=%x\n", __func__, status);
+ pr_err("%s: status=%x\n", __func__, status);
}
}
@@ -88,7 +88,7 @@ void msm_dsi_timeout_status(unsigned char *ctrl_base)
status = MIPI_INP(ctrl_base + DSI_TIMEOUT_STATUS);
if (status & 0x0111) {
MIPI_OUTP(ctrl_base + DSI_TIMEOUT_STATUS, status);
- pr_debug("%s: status=%x\n", __func__, status);
+ pr_err("%s: status=%x\n", __func__, status);
}
}
@@ -100,7 +100,7 @@ void msm_dsi_dln0_phy_err(unsigned char *ctrl_base)
if (status & 0x011111) {
MIPI_OUTP(ctrl_base + DSI_DLN0_PHY_ERR, status);
- pr_debug("%s: status=%x\n", __func__, status);
+ pr_err("%s: status=%x\n", __func__, status);
}
}
@@ -112,7 +112,7 @@ void msm_dsi_fifo_status(unsigned char *ctrl_base)
if (status & 0x44444489) {
MIPI_OUTP(ctrl_base + DSI_FIFO_STATUS, status);
- pr_debug("%s: status=%x\n", __func__, status);
+ pr_err("%s: status=%x\n", __func__, status);
}
}
@@ -124,7 +124,7 @@ void msm_dsi_status(unsigned char *ctrl_base)
if (status & 0x80000000) {
MIPI_OUTP(ctrl_base + DSI_STATUS, status);
- pr_debug("%s: status=%x\n", __func__, status);
+ pr_err("%s: status=%x\n", __func__, status);
}
}