Lines Matching full:mck
299 * @bus_hz: The rate of @mck in Hz. This forms the basis for MMC bus
302 * @mck: The peripheral bus clock hooked up to the MMC controller.
379 struct clk *mck; member
2516 host->mck = devm_clk_get(&pdev->dev, "mci_clk"); in atmci_probe()
2517 if (IS_ERR(host->mck)) in atmci_probe()
2518 return PTR_ERR(host->mck); in atmci_probe()
2524 ret = clk_prepare_enable(host->mck); in atmci_probe()
2529 host->bus_hz = clk_get_rate(host->mck); in atmci_probe()
2537 clk_disable_unprepare(host->mck); in atmci_probe()
2625 clk_disable_unprepare(host->mck); in atmci_probe()
2664 clk_disable_unprepare(host->mck); in atmci_remove()
2675 clk_disable_unprepare(host->mck); in atmci_runtime_suspend()
2688 return clk_prepare_enable(host->mck); in atmci_runtime_resume()