Commit 9767b04f authored by Maxime Ripard's avatar Maxime Ripard Committed by Michael Turquette

clk: Export phase functions

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: default avatarArnd Bergmann <arnd@arndb.de>
Signed-off-by: default avatarMaxime Ripard <maxime.ripard@free-electrons.com>
Reviewed-by: default avatarStephen Boyd <sboyd@codeaurora.org>
Signed-off-by: default avatarMichael Turquette <mturquette@linaro.org>
parent 0489ea9e
......@@ -1833,6 +1833,7 @@ int clk_set_phase(struct clk *clk, int degrees)
out:
return ret;
}
EXPORT_SYMBOL_GPL(clk_set_phase);
/**
* clk_get_phase - return the phase shift of a clock signal
......@@ -1855,6 +1856,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
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment