This is needed for the split between provider and user clk APIs, for clocks that are implemented in modules.
Signed-off-by: Tomeu Vizoso <[email protected]> --- drivers/clk/clk.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/drivers/clk/clk.c b/drivers/clk/clk.c index b76fa69..5db9710 100644 --- a/drivers/clk/clk.c +++ b/drivers/clk/clk.c @@ -2197,6 +2197,7 @@ int __clk_get(struct clk *clk) } return 1; } +EXPORT_SYMBOL(__clk_get); void __clk_put(struct clk *clk) { @@ -2209,6 +2210,7 @@ void __clk_put(struct clk *clk) module_put(clk->owner); } +EXPORT_SYMBOL(__clk_put); /*** clk rate change notifiers ***/ -- 1.9.3 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to [email protected] More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/

