From: Vasily Khoruzhick Date: Mon, 14 May 2018 20:49:52 +0000 (-0700) Subject: sunxi: video: HDMI: use correct bits for HSYNC and VSYNC polarity. X-Git-Tag: v2018.07-rc1~147^2~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c7cb17e89295312263ec7904e32a118938c72d34;p=platform%2Fkernel%2Fu-boot.git sunxi: video: HDMI: use correct bits for HSYNC and VSYNC polarity. HSYNC is bit 8, and VSYNC is bit 9. Signed-off-by: Vasily Khoruzhick Reviewed-by: Jernej Skrabec --- diff --git a/drivers/video/sunxi/sunxi_dw_hdmi.c b/drivers/video/sunxi/sunxi_dw_hdmi.c index c78e33b..9dbea64 100644 --- a/drivers/video/sunxi/sunxi_dw_hdmi.c +++ b/drivers/video/sunxi/sunxi_dw_hdmi.c @@ -303,10 +303,10 @@ static int sunxi_dw_hdmi_enable(struct udevice *dev, int panel_bpp, sunxi_dw_hdmi_lcdc_init(priv->mux, edid, panel_bpp); - if (edid->flags & DISPLAY_FLAGS_HSYNC_LOW) + if (edid->flags & DISPLAY_FLAGS_VSYNC_LOW) setbits_le32(&phy->pol, 0x200); - if (edid->flags & DISPLAY_FLAGS_VSYNC_LOW) + if (edid->flags & DISPLAY_FLAGS_HSYNC_LOW) setbits_le32(&phy->pol, 0x100); setbits_le32(&phy->ctrl, 0xf << 12);