summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnimesh Kishore <animeshk@codeaurora.org>2017-07-19 14:50:02 +0530
committerAnimesh Kishore <animeshk@codeaurora.org>2017-07-19 18:12:37 +0530
commit330e834b2b1f07a4ecca80248364517afb8ec2a6 (patch)
treecfb90420cff9c8d478188402f2ae1d95427bfb39
parent84c69cb5aab50088644ee0bd53a7768eff65e14c (diff)
msm: mdss: Remove check to cap requested mdp clock
Invalidate layers with requested mdp clock greater than max supported. Change-Id: Ic44787e6c0ad1cce105074533c1b6fd21c79da38 Signed-off-by: Animesh Kishore <animeshk@codeaurora.org>
-rw-r--r--drivers/video/fbdev/msm/mdss_mdp_ctl.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/video/fbdev/msm/mdss_mdp_ctl.c b/drivers/video/fbdev/msm/mdss_mdp_ctl.c
index efd681a5d954..52709d396339 100644
--- a/drivers/video/fbdev/msm/mdss_mdp_ctl.c
+++ b/drivers/video/fbdev/msm/mdss_mdp_ctl.c
@@ -676,7 +676,6 @@ static u32 get_pipe_mdp_clk_rate(struct mdss_mdp_pipe *pipe,
if (flags & PERF_CALC_PIPE_APPLY_CLK_FUDGE)
rate = mdss_mdp_clk_fudge_factor(mixer, rate);
- rate = min(mdata->max_mdp_clk_rate, rate);
return rate;
}