Lines Matching refs:fast_clk
162 struct clk *fast_clk; member
385 ret = clk_enable(i2c_dev->fast_clk); in tegra_i2c_clock_enable()
396 clk_disable(i2c_dev->fast_clk); in tegra_i2c_clock_enable()
405 clk_disable(i2c_dev->fast_clk); in tegra_i2c_clock_disable()
711 struct clk *fast_clk; in tegra_i2c_probe() local
771 fast_clk = devm_clk_get(&pdev->dev, "fast-clk"); in tegra_i2c_probe()
772 if (IS_ERR(fast_clk)) { in tegra_i2c_probe()
774 return PTR_ERR(fast_clk); in tegra_i2c_probe()
776 i2c_dev->fast_clk = fast_clk; in tegra_i2c_probe()
782 ret = clk_prepare(i2c_dev->fast_clk); in tegra_i2c_probe()
839 clk_unprepare(i2c_dev->fast_clk); in tegra_i2c_probe()
851 clk_unprepare(i2c_dev->fast_clk); in tegra_i2c_remove()