diff options
-rw-r--r-- | drivers/video/mxc_hdmi.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/video/mxc_hdmi.c b/drivers/video/mxc_hdmi.c index ad6d7139eaa8..fc5df129bcb1 100644 --- a/drivers/video/mxc_hdmi.c +++ b/drivers/video/mxc_hdmi.c @@ -570,6 +570,10 @@ static void hdmi_video_packetize(struct mxc_hdmi *hdmi) } else return; + if (!hdmi->edid_cfg.vsd_dc_48bit && !hdmi->edid_cfg.vsd_dc_36bit && + !hdmi->edid_cfg.vsd_dc_30bit && !hdmi->edid_cfg.vsd_dc_y444) + color_depth = 0; + /* set the packetizer registers */ val = ((color_depth << HDMI_VP_PR_CD_COLOR_DEPTH_OFFSET) & HDMI_VP_PR_CD_COLOR_DEPTH_MASK) | |