From 394499b97e2e622bbdc20da4932eba8cc3c487a1 Mon Sep 17 00:00:00 2001 From: Zongdong Jiao Date: Fri, 9 Nov 2018 14:57:29 +0800 Subject: [PATCH] hdmitx: remove a wrong Y422 format judgement [1/1] PD#IPTV-55 Problem: When connect to a Samsung TV(support 4k60 422 12bit), get a wrong 0 of 'echo 2160p60hz422,12bit > valid_mode' Solution: Remove a wrong Y422 format judgement Verify: P212 Change-Id: Ic0f2cefc1e0893390ac38298b55272877d81e04b Signed-off-by: Zongdong Jiao --- drivers/amlogic/media/vout/hdmitx/hdmi_tx_20/hdmi_tx_edid.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/drivers/amlogic/media/vout/hdmitx/hdmi_tx_20/hdmi_tx_edid.c b/drivers/amlogic/media/vout/hdmitx/hdmi_tx_20/hdmi_tx_edid.c index 6a190f7..359f53e 100644 --- a/drivers/amlogic/media/vout/hdmitx/hdmi_tx_20/hdmi_tx_edid.c +++ b/drivers/amlogic/media/vout/hdmitx/hdmi_tx_20/hdmi_tx_edid.c @@ -2284,9 +2284,6 @@ bool hdmitx_edid_check_valid_mode(struct hdmitx_dev *hdev, (para->cs == COLORSPACE_YUV444)) if (para->cd != COLORDEPTH_24B) return 0; - if (para->cs == COLORSPACE_YUV422) - if (para->cd != COLORDEPTH_48B) - return 0; break; case HDMI_720x480i60_16x9: case HDMI_720x576i50_16x9: -- 2.7.4