The phase setter and getter were not exported until now, which was causing build breakages when callers were compiled as module. Export these two functions.
Reported-by: Arnd Bergmann <[email protected]> Signed-off-by: Maxime Ripard <[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 f4963b7d4e17..e188c26ce197 100644 --- a/drivers/clk/clk.c +++ b/drivers/clk/clk.c @@ -1778,6 +1778,7 @@ out_unlock: out: return ret; } +EXPORT_SYMBOL_GPL(clk_set_phase); /** * clk_get_phase - return the phase shift of a clock signal @@ -1800,6 +1801,7 @@ int clk_get_phase(struct clk *clk) out: return ret; } +EXPORT_SYMBOL_GPL(clk_get_phase); /** * __clk_init - initialize the data structures in a struct clk -- 2.2.2 -- 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/

