Merge "msm: mdss: do not update polarity for DSI interface"

This commit is contained in:
Linux Build Service Account 2017-07-28 08:21:46 -07:00 committed by Gerrit - the friendly Code Review server
commit a6e2c2983f

View file

@ -643,8 +643,13 @@ static int mdss_mdp_video_timegen_setup(struct mdss_mdp_ctl *ctl,
display_hctl = (hsync_end_x << 16) | hsync_start_x;
den_polarity = 0;
hsync_polarity = p->h_polarity;
vsync_polarity = p->v_polarity;
if (ctx->intf_type == MDSS_INTF_HDMI) {
hsync_polarity = p->h_polarity;
vsync_polarity = p->v_polarity;
} else {
hsync_polarity = 0;
vsync_polarity = 0;
}
polarity_ctl = (den_polarity << 2) | /* DEN Polarity */
(vsync_polarity << 1) | /* VSYNC Polarity */
(hsync_polarity << 0); /* HSYNC Polarity */