Lines Matching refs:cec_clk
154 struct clk *cec_clk; member
3288 hdmi->cec_clk = devm_clk_get(hdmi->dev, "cec"); in dw_hdmi_probe()
3289 if (PTR_ERR(hdmi->cec_clk) == -ENOENT) { in dw_hdmi_probe()
3290 hdmi->cec_clk = NULL; in dw_hdmi_probe()
3291 } else if (IS_ERR(hdmi->cec_clk)) { in dw_hdmi_probe()
3292 ret = PTR_ERR(hdmi->cec_clk); in dw_hdmi_probe()
3297 hdmi->cec_clk = NULL; in dw_hdmi_probe()
3300 ret = clk_prepare_enable(hdmi->cec_clk); in dw_hdmi_probe()
3443 if (hdmi->cec_clk) in dw_hdmi_probe()
3444 clk_disable_unprepare(hdmi->cec_clk); in dw_hdmi_probe()
3468 if (hdmi->cec_clk) in dw_hdmi_remove()
3469 clk_disable_unprepare(hdmi->cec_clk); in dw_hdmi_remove()