diff options
author | Sandor Yu <R01008@freescale.com> | 2012-07-02 16:20:31 +0800 |
---|---|---|
committer | Jason Liu <r64343@freescale.com> | 2012-07-20 13:39:25 +0800 |
commit | bf839af420f06b2553251440770f048270ce7a04 (patch) | |
tree | e00c91e0aa9db40c6556ddb8c0f765d913926c69 | |
parent | 63f1b42f5eb822e574522cbfb3713bbdab2f0f73 (diff) |
ENGR00215516 MX6x HDMI, keep HDMI HPD clock on when display blank
HDMI Hotplug function should work when display blank,
So keep HDMI HPD clock on.
Signed-off-by: Sandor Yu <R01008@freescale.com>
-rw-r--r-- | drivers/video/mxc_hdmi.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/drivers/video/mxc_hdmi.c b/drivers/video/mxc_hdmi.c index 48ff32f68b5d..b096a881a7b2 100644 --- a/drivers/video/mxc_hdmi.c +++ b/drivers/video/mxc_hdmi.c @@ -2035,9 +2035,6 @@ static int mxc_hdmi_fb_event(struct notifier_block *nb, hdmi->blank = *((int *)event->data); - clk_enable(hdmi->hdmi_iahb_clk); - clk_enable(hdmi->hdmi_isfr_clk); - mxc_hdmi_enable_pins(hdmi); if (hdmi->fb_reg && hdmi->cable_plugin) mxc_hdmi_setup(hdmi, val); @@ -2049,9 +2046,6 @@ static int mxc_hdmi_fb_event(struct notifier_block *nb, mxc_hdmi_disable_pins(hdmi); mxc_hdmi_phy_disable(hdmi); - clk_disable(hdmi->hdmi_iahb_clk); - clk_disable(hdmi->hdmi_isfr_clk); - hdmi->blank = *((int *)event->data); } else dev_dbg(&hdmi->pdev->dev, |