summaryrefslogtreecommitdiff
path: root/drivers
diff options
context:
space:
mode:
authorTatenda Chipeperekwa <tatendac@codeaurora.org>2015-12-01 11:11:46 -0800
committerDavid Keitel <dkeitel@codeaurora.org>2016-03-23 21:12:38 -0700
commitba6b11b381643c48bda683f48c98c1d6b908a5fc (patch)
tree11550783850cb659fe14a58074edb5e1949683f8 /drivers
parent4225cad9184dedc1c15c9bbc9cffc976f17d02f7 (diff)
clk: msm: mdss: Change PLL/PHY status messages to debug level
The utility functions to check for PLL lock status and PHY ready status should only report the status, and log messages for debug/information purposes. The caller must decide on how to treat the return value, and log appropriately depending on the use case. Change-Id: Id369b8c4e326d71a071a244e3de432efe89bd483 Signed-off-by: Tatenda Chipeperekwa <tatendac@codeaurora.org>
Diffstat (limited to 'drivers')
-rw-r--r--drivers/clk/msm/mdss/mdss-hdmi-pll-8996.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/clk/msm/mdss/mdss-hdmi-pll-8996.c b/drivers/clk/msm/mdss/mdss-hdmi-pll-8996.c
index 18e1d8b35115..e38cce64f0e9 100644
--- a/drivers/clk/msm/mdss/mdss-hdmi-pll-8996.c
+++ b/drivers/clk/msm/mdss/mdss-hdmi-pll-8996.c
@@ -1882,7 +1882,7 @@ static int hdmi_8996_phy_ready_status(struct mdss_pll_resources *io)
if (read_count == HDMI_PLL_POLL_MAX_READS) {
phy_ready = 0;
- DEV_ERR("%s: PHY READY TIMEOUT\n", __func__);
+ DEV_DBG("%s: PHY READY TIMEOUT\n", __func__);
}
mdss_pll_resource_enable(io, false);
@@ -1919,7 +1919,7 @@ static int hdmi_8996_pll_lock_status(struct mdss_pll_resources *io)
if (read_count == HDMI_PLL_POLL_MAX_READS) {
pll_locked = 0;
- DEV_ERR("%s: C READY TIMEOUT\n", __func__);
+ DEV_DBG("%s: C READY TIMEOUT\n", __func__);
}
mdss_pll_resource_enable(io, false);