Lines Matching refs:cec_clk
144 struct clk *cec_clk; member
2701 hdmi->cec_clk = devm_clk_get(hdmi->dev, "cec"); in __dw_hdmi_probe()
2702 if (PTR_ERR(hdmi->cec_clk) == -ENOENT) { in __dw_hdmi_probe()
2703 hdmi->cec_clk = NULL; in __dw_hdmi_probe()
2704 } else if (IS_ERR(hdmi->cec_clk)) { in __dw_hdmi_probe()
2705 ret = PTR_ERR(hdmi->cec_clk); in __dw_hdmi_probe()
2710 hdmi->cec_clk = NULL; in __dw_hdmi_probe()
2713 ret = clk_prepare_enable(hdmi->cec_clk); in __dw_hdmi_probe()
2857 if (hdmi->cec_clk) in __dw_hdmi_probe()
2858 clk_disable_unprepare(hdmi->cec_clk); in __dw_hdmi_probe()
2879 if (hdmi->cec_clk) in __dw_hdmi_remove()
2880 clk_disable_unprepare(hdmi->cec_clk); in __dw_hdmi_remove()