Lines Matching refs:utmi_clk
87 struct clk **utmi_clk; member
314 if (!IS_ERR(omap->utmi_clk[i])) { in usbhs_runtime_resume()
315 r = clk_prepare_enable(omap->utmi_clk[i]); in usbhs_runtime_resume()
350 if (!IS_ERR(omap->utmi_clk[i])) in usbhs_runtime_suspend()
351 clk_disable_unprepare(omap->utmi_clk[i]); in usbhs_runtime_suspend()
619 omap->utmi_clk = devm_kzalloc(dev, i, GFP_KERNEL); in usbhs_omap_probe()
623 if (!omap->utmi_clk || !omap->hsic480m_clk || !omap->hsic60m_clk) { in usbhs_omap_probe()
638 omap->utmi_clk[i] = ERR_PTR(-ENODEV); in usbhs_omap_probe()
714 omap->utmi_clk[i] = devm_clk_get(dev, clkname); in usbhs_omap_probe()
715 if (IS_ERR(omap->utmi_clk[i])) { in usbhs_omap_probe()
716 ret = PTR_ERR(omap->utmi_clk[i]); in usbhs_omap_probe()