]> git.kernelconcepts.de Git - karo-tx-linux.git/commitdiff
clk: Add __clk_hw_set_clk helper function
authorJavier Martinez Canillas <javier.martinez@collabora.co.uk>
Thu, 12 Feb 2015 13:58:29 +0000 (14:58 +0100)
committerMichael Turquette <mturquette@linaro.org>
Wed, 18 Feb 2015 17:40:07 +0000 (09:40 -0800)
After the clk API change to return a per-user clock instance, both the
struct clk_core and struct clk pointers from the hw clock needs to be
assigned to clock that share the same state.

In the future the struct clk_core will be removed and this is going to
change again so to avoid having to change the assignments twice in all
the drivers, add a helper function to have an indirection level.

Signed-off-by: Javier Martinez Canillas <javier.martinez@collabora.co.uk>
Reviewed-by: Stephen Boyd <sboyd@codeaurora.org>
Signed-off-by: Michael Turquette <mturquette@linaro.org>
include/linux/clk-provider.h

index 17dd6e9439d1fa868842ac5ed6f08727e7234bda..5591ea71a8d14054bf923dcad45dc94f71bd029a 100644 (file)
@@ -590,6 +590,12 @@ long __clk_mux_determine_rate_closest(struct clk_hw *hw, unsigned long rate,
                              unsigned long *best_parent_rate,
                              struct clk_hw **best_parent_p);
 
+static inline void __clk_hw_set_clk(struct clk_hw *dst, struct clk_hw *src)
+{
+       dst->clk = src->clk;
+       dst->core = src->core;
+}
+
 /*
  * FIXME clock api without lock protection
  */