From 90629f20d973669fcf14eaee56c075c871e1cc6c Mon Sep 17 00:00:00 2001 From: Algea Cao Date: Fri, 14 Jan 2022 10:12:38 +0800 Subject: [PATCH] drm/bridge: synopsys: dw-hdmi-qp: Removed stop sending packet when hdmi disable This is an ineffective change, and accessing the register after HDMI disabled will cause system crash. Signed-off-by: Algea Cao Change-Id: I0633f83fcdf4abaff1e8f72fe3c9f7845c492a2e --- drivers/gpu/drm/bridge/synopsys/dw-hdmi-qp.c | 1 - 1 file changed, 1 deletion(-) diff --git a/drivers/gpu/drm/bridge/synopsys/dw-hdmi-qp.c b/drivers/gpu/drm/bridge/synopsys/dw-hdmi-qp.c index ea01addc4083..919a8fc2c72d 100644 --- a/drivers/gpu/drm/bridge/synopsys/dw-hdmi-qp.c +++ b/drivers/gpu/drm/bridge/synopsys/dw-hdmi-qp.c @@ -1920,7 +1920,6 @@ static void dw_hdmi_qp_bridge_atomic_disable(struct drm_bridge *bridge, mutex_lock(&hdmi->mutex); hdmi->disabled = true; hdmi->curr_conn = NULL; - hdmi_writel(hdmi, 0, PKTSCHED_PKT_EN); if (hdmi->phy.ops->disable) hdmi->phy.ops->disable(hdmi, hdmi->phy.data); mutex_unlock(&hdmi->mutex);