Lines Matching refs:utmi_clk
86 struct clk **utmi_clk; member
313 if (!IS_ERR(omap->utmi_clk[i])) { in usbhs_runtime_resume()
314 r = clk_prepare_enable(omap->utmi_clk[i]); in usbhs_runtime_resume()
349 if (!IS_ERR(omap->utmi_clk[i])) in usbhs_runtime_suspend()
350 clk_disable_unprepare(omap->utmi_clk[i]); in usbhs_runtime_suspend()
616 omap->utmi_clk = devm_kzalloc(dev, i, GFP_KERNEL); in usbhs_omap_probe()
620 if (!omap->utmi_clk || !omap->hsic480m_clk || !omap->hsic60m_clk) { in usbhs_omap_probe()
635 omap->utmi_clk[i] = ERR_PTR(-ENODEV); in usbhs_omap_probe()
711 omap->utmi_clk[i] = devm_clk_get(dev, clkname); in usbhs_omap_probe()
712 if (IS_ERR(omap->utmi_clk[i])) { in usbhs_omap_probe()
713 ret = PTR_ERR(omap->utmi_clk[i]); in usbhs_omap_probe()