From de2560f0756127648ba3e7936cc6c2481d949e78 Mon Sep 17 00:00:00 2001 From: Joshua Riek Date: Sun, 28 Apr 2024 20:39:30 -0400 Subject: [PATCH] Revert "Fix CEC on rk356X on tv restart (#149)" This reverts commit fe2e254dc887e86bfe44f38aca27262f00c4cf86. --- drivers/gpu/drm/bridge/synopsys/dw-hdmi.c | 9 --------- 1 file changed, 9 deletions(-) diff --git a/drivers/gpu/drm/bridge/synopsys/dw-hdmi.c b/drivers/gpu/drm/bridge/synopsys/dw-hdmi.c index c02a4f8100583..c36513ce718ef 100644 --- a/drivers/gpu/drm/bridge/synopsys/dw-hdmi.c +++ b/drivers/gpu/drm/bridge/synopsys/dw-hdmi.c @@ -358,15 +358,6 @@ static void handle_plugged_change(struct dw_hdmi *hdmi, bool plugged) { if (hdmi->plugged_cb && hdmi->codec_dev) hdmi->plugged_cb(hdmi->codec_dev, plugged); - if (plugged && hdmi->ddc) { - struct edid *edid = drm_get_edid(&hdmi->connector, hdmi->ddc); - if (edid) { - if (hdmi->cec_notifier) - cec_notifier_set_phys_addr_from_edid( - hdmi->cec_notifier, edid); - kfree(edid); - } - } } int dw_hdmi_set_plugged_cb(struct dw_hdmi *hdmi, hdmi_codec_plugged_cb fn,