Lines Matching defs:mck
264 * @bus_hz: The rate of @mck in Hz. This forms the basis for MMC bus
267 * @mck: The peripheral bus clock hooked up to the MMC controller.
344 struct clk *mck;
2482 host->mck = devm_clk_get(&pdev->dev, "mci_clk");
2483 if (IS_ERR(host->mck))
2484 return PTR_ERR(host->mck);
2490 ret = clk_prepare_enable(host->mck);
2495 host->bus_hz = clk_get_rate(host->mck);
2503 clk_disable_unprepare(host->mck);
2591 clk_disable_unprepare(host->mck);
2630 clk_disable_unprepare(host->mck);
2643 clk_disable_unprepare(host->mck);
2656 return clk_prepare_enable(host->mck);