diff options
| author | zhaoyuan <yzhao@codeaurora.org> | 2017-04-27 15:35:58 +0800 |
|---|---|---|
| committer | zhaoyuan <yzhao@codeaurora.org> | 2017-05-05 14:40:20 +0800 |
| commit | 0b85a93faed9e6a35675b5b4a110e42b579307fc (patch) | |
| tree | 80cd7f6e0dcfe7aba3c79cc6540af3585f7a52fc /drivers/video/fbdev | |
| parent | baf0fa8f1ed33c6961353e951ed5b6e03e3ed6fd (diff) | |
msm: mdss: do not apply AVMUTE for non-CTA format
AVMUTE is applied when HDMI power off. However, when HDMI power
on, we just make AVMUTE false for CTA format. For non-CTA format,
AVMUTE is still applied, if we want to show premium data(highger
quality, such as enable deep color), HDMI could not display, just
black screen.
CRs-Fixed: 2033800
Change-Id: If0de6052e98cb9cfcf88ae21d8c19d39ae8abd14
Signed-off-by: zhaoyuan <yzhao@codeaurora.org>
Diffstat (limited to 'drivers/video/fbdev')
| -rw-r--r-- | drivers/video/fbdev/msm/mdss_hdmi_tx.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/drivers/video/fbdev/msm/mdss_hdmi_tx.c b/drivers/video/fbdev/msm/mdss_hdmi_tx.c index 42845f9ff192..61e373b33593 100644 --- a/drivers/video/fbdev/msm/mdss_hdmi_tx.c +++ b/drivers/video/fbdev/msm/mdss_hdmi_tx.c @@ -3203,8 +3203,7 @@ static int hdmi_tx_power_on(struct hdmi_tx_ctrl *hdmi_ctrl) hdmi_tx_core_on(hdmi_ctrl); - if (hdmi_ctrl->panel.infoframe && - !hdmi_tx_is_encryption_set(hdmi_ctrl) && + if (!hdmi_tx_is_encryption_set(hdmi_ctrl) && hdmi_tx_is_stream_shareable(hdmi_ctrl)) { hdmi_tx_config_avmute(hdmi_ctrl, false); } |
