From 08ec13e4d0d66733eb299718a69609573f78d8c8 Mon Sep 17 00:00:00 2001 From: Zheng Yang Date: Wed, 7 Feb 2018 11:17:01 +0800 Subject: [PATCH] drm: rockchip: dw-hdmi: fix 10bit not work when booting up with uboot logo Default value of hdmi->colordepth is defined by input color mode, so there is no need to set value again when color depth property is created. Change-Id: I2e242fabdaadc0c3b41e48f806cbded5f619c455 Signed-off-by: Zheng Yang --- drivers/gpu/drm/rockchip/dw_hdmi-rockchip.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/gpu/drm/rockchip/dw_hdmi-rockchip.c b/drivers/gpu/drm/rockchip/dw_hdmi-rockchip.c index 9f2ee9dab8f3..bdc96cd4253d 100644 --- a/drivers/gpu/drm/rockchip/dw_hdmi-rockchip.c +++ b/drivers/gpu/drm/rockchip/dw_hdmi-rockchip.c @@ -947,7 +947,6 @@ dw_hdmi_rockchip_attatch_properties(struct drm_connector *connector, if (prop) { hdmi->color_depth_property = prop; drm_object_attach_property(&connector->base, prop, 0); - hdmi->colordepth = 8; } }