mirror of
https://github.com/followmsi/android_kernel_google_msm.git
synced 2024-11-06 23:17:41 +00:00
msm: display: remove warning messages for bandwidth calculation
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>
This commit is contained in:
parent
3bcea4ed96
commit
a5a413318e
1 changed files with 2 additions and 2 deletions
|
@ -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",
|
||||
|
|
Loading…
Reference in a new issue