aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/drivers/clk/clk-fixed-rate.c
diff options
context:
space:
mode:
authorShawn Guo <shawn.guo@linaro.org>2012-03-27 15:23:21 +0800
committerMike Turquette <mturquette@linaro.org>2012-04-24 16:37:38 -0700
commitc0d2530c03cbf3741cb7a0f8ebae93e7a563fc58 (patch)
treed9a5492ab51ca80644620912fe82a27b76c4abf2 /drivers/clk/clk-fixed-rate.c
parentclk: use kzalloc in clk_register_mux (diff)
downloadwireguard-linux-c0d2530c03cbf3741cb7a0f8ebae93e7a563fc58.tar.xz
wireguard-linux-c0d2530c03cbf3741cb7a0f8ebae93e7a563fc58.zip
clk: remove unnecessary EXPORT_SYMBOL_GPL
It makes no sense to have EXPORT_SYMBOL_GPL on static functions. Signed-off-by: Shawn Guo <shawn.guo@linaro.org> Signed-off-by: Mike Turquette <mturquette@linaro.org>
Diffstat (limited to 'drivers/clk/clk-fixed-rate.c')
-rw-r--r--drivers/clk/clk-fixed-rate.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/clk/clk-fixed-rate.c b/drivers/clk/clk-fixed-rate.c
index 90c79fb5d1bd..651b06f49e15 100644
--- a/drivers/clk/clk-fixed-rate.c
+++ b/drivers/clk/clk-fixed-rate.c
@@ -32,7 +32,6 @@ static unsigned long clk_fixed_rate_recalc_rate(struct clk_hw *hw,
{
return to_clk_fixed_rate(hw)->fixed_rate;
}
-EXPORT_SYMBOL_GPL(clk_fixed_rate_recalc_rate);
struct clk_ops clk_fixed_rate_ops = {
.recalc_rate = clk_fixed_rate_recalc_rate,