diff options
| author | Narender Ankam <nankam@codeaurora.org> | 2019-07-24 16:28:21 +0530 |
|---|---|---|
| committer | Gerrit - the friendly Code Review server <code-review@localhost> | 2020-03-03 02:30:19 -0800 |
| commit | dbe206604b8f8fbac35609fe576734d569486a07 (patch) | |
| tree | f78dd4cfd401d4b239c8eb680d3a3218a9122cd2 | |
| parent | dbf3097f3dbe222474d172557a6a8c3645ef59c2 (diff) | |
msm: mdss: hdmi: support only progressive DTDs
Do not support interlaced timings while parsing
EDID DTDs.
Change-Id: I9ef6e820a49224fbf3bd6373c6722ce44f4bd3c9
Signed-off-by: Narender Ankam <nankam@codeaurora.org>
Signed-off-by: Ramendra Kumar <ramendra@codeaurora.org>
| -rw-r--r-- | drivers/video/fbdev/msm/mdss_hdmi_edid.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/video/fbdev/msm/mdss_hdmi_edid.c b/drivers/video/fbdev/msm/mdss_hdmi_edid.c index 497f0ad31d17..62a633a19258 100644 --- a/drivers/video/fbdev/msm/mdss_hdmi_edid.c +++ b/drivers/video/fbdev/msm/mdss_hdmi_edid.c @@ -1651,7 +1651,9 @@ static void hdmi_edid_detail_desc(struct hdmi_edid_ctrl *edid_ctrl, timing.pixel_freq = pixel_clk; timing.refresh_rate = refresh_rate; timing.interlaced = interlaced; - timing.supported = true; + if (!interlaced) + timing.supported = true; + timing.ar = aspect_ratio_4_3 ? HDMI_RES_AR_4_3 : (aspect_ratio_5_4 ? HDMI_RES_AR_5_4 : HDMI_RES_AR_16_9); |
