aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNaseer Ahmed <naseer@codeaurora.org>2013-09-18 18:02:50 -0400
committerNaseer Ahmed <naseer@quicinc.com>2015-08-17 19:10:55 +0000
commita5a413318ef546421b164ab4d126076f34250de3 (patch)
tree77abaa1be44026930fae24def7a0f8d28dbfbc18
parent3bcea4ed964b2cd6f1c10092edd465b72b085950 (diff)
msm: display: remove warning messages for bandwidth calculationandroid-6.0.0_r0.1
These messages may cause watchdog timeout. For the usecases that use the ab or ib greater than max, the max will be taken and if that is not enough, underrun would happen, so this message would not be necessary. Signed-off-by: Huaibin Yang <huaibiny@codeaurora.org> Signed-off-by: Naseer Ahmed <naseer@codeaurora.org>
-rw-r--r--drivers/video/msm/mdp4_overlay.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/video/msm/mdp4_overlay.c b/drivers/video/msm/mdp4_overlay.c
index 6f05e97a920a..596ae4553aac 100644
--- a/drivers/video/msm/mdp4_overlay.c
+++ b/drivers/video/msm/mdp4_overlay.c
@@ -3045,10 +3045,10 @@ int mdp4_overlay_mdp_perf_req(struct msm_fb_data_type *mfd)
ib_quota_total, perf_req->mdp_ib_bw);
if (ab_quota_total > mdp_max_bw)
- pr_warn("%s: req ab bw=%llu is larger than max bw=%llu",
+ pr_debug("%s: req ab bw=%llu is larger than max bw=%llu",
__func__, ab_quota_total, mdp_max_bw);
if (ib_quota_total > mdp_max_bw)
- pr_warn("%s: req ib bw=%llu is larger than max bw=%llu",
+ pr_debug("%s: req ib bw=%llu is larger than max bw=%llu",
__func__, ib_quota_total, mdp_max_bw);
pr_debug("%s %d: pid %d cnt %d clk %d ov0_blt %d, ov1_blt %d\n",