Lines Matching refs: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;
2511 host->mck = devm_clk_get(&pdev->dev, "mci_clk");
2512 if (IS_ERR(host->mck))
2513 return PTR_ERR(host->mck);
2519 ret = clk_prepare_enable(host->mck);
2524 host->bus_hz = clk_get_rate(host->mck);
2532 clk_disable_unprepare(host->mck);
2620 clk_disable_unprepare(host->mck);
2659 clk_disable_unprepare(host->mck);
2670 clk_disable_unprepare(host->mck);
2683 return clk_prepare_enable(host->mck);