Lines Matching full:mck
298 * @bus_hz: The rate of @mck in Hz. This forms the basis for MMC bus
301 * @mck: The peripheral bus clock hooked up to the MMC controller.
378 struct clk *mck; member
2511 host->mck = devm_clk_get(&pdev->dev, "mci_clk"); in atmci_probe()
2512 if (IS_ERR(host->mck)) in atmci_probe()
2513 return PTR_ERR(host->mck); in atmci_probe()
2519 ret = clk_prepare_enable(host->mck); in atmci_probe()
2524 host->bus_hz = clk_get_rate(host->mck); in atmci_probe()
2532 clk_disable_unprepare(host->mck); in atmci_probe()
2620 clk_disable_unprepare(host->mck); in atmci_probe()
2659 clk_disable_unprepare(host->mck); in atmci_remove()
2670 clk_disable_unprepare(host->mck); in atmci_runtime_suspend()
2683 return clk_prepare_enable(host->mck); in atmci_runtime_resume()