Lines Matching defs:clk_prepare
1044 * clk_prepare - prepare a clock source
1047 * clk_prepare may sleep, which differentiates it from clk_enable. In a simple
1048 * case, clk_prepare can be used instead of clk_enable to ungate a clk if the
1051 * It is this reason that clk_prepare and clk_enable are not mutually
1052 * exclusive. In fact clk_prepare must be called before clk_enable.
1055 int clk_prepare(struct clk *clk)
1062 EXPORT_SYMBOL_GPL(clk_prepare);
1268 * clk_enable must not sleep, which differentiates it from clk_prepare. In a
1269 * simple case, clk_enable can be used instead of clk_prepare to ungate a clk
1273 * clk_enable and clk_prepare are not mutually exclusive. In fact clk_prepare
1882 * a clk_prepare()).