Lines Matching defs:clk_disable
967 * clk_unprepare may sleep, which differentiates it from clk_disable. In a
968 * simple case, clk_unprepare can be used instead of clk_disable to gate a clk
971 * part. It is this reason that clk_unprepare and clk_disable are not mutually
972 * exclusive. In fact clk_disable must be called before clk_unprepare.
1101 * clk_disable - gate a clock
1104 * clk_disable must not sleep, which differentiates it from clk_unprepare. In
1105 * a simple case, clk_disable can be used instead of clk_unprepare to gate a
1109 * this reason that clk_unprepare and clk_disable are not mutually exclusive.
1110 * In fact clk_disable must be called before clk_unprepare.
1112 void clk_disable(struct clk *clk)
1119 EXPORT_SYMBOL_GPL(clk_disable);