diff options
author | Julia Lawall <Julia.Lawall@lip6.fr> | 2015-03-11 17:56:31 +0100 |
---|---|---|
committer | Stephen Boyd <sboyd@codeaurora.org> | 2015-03-11 15:53:18 -0700 |
commit | f55ac0655a6e42d8299b78c23ee70301f7956d5e (patch) | |
tree | 5845c4de177d706d94a41b8975f5508ebf11c8ef /drivers | |
parent | 9315514252a95bca37be3ef8a93f835ed91c2855 (diff) | |
download | linux-exynos-f55ac0655a6e42d8299b78c23ee70301f7956d5e.tar.gz linux-exynos-f55ac0655a6e42d8299b78c23ee70301f7956d5e.tar.bz2 linux-exynos-f55ac0655a6e42d8299b78c23ee70301f7956d5e.zip |
clk: don't export static symbol
The semantic patch that fixes this problem is as follows:
(http://coccinelle.lip6.fr/)
// <smpl>
@r@
type T;
identifier f;
@@
static T f (...) { ... }
@@
identifier r.f;
declarer name EXPORT_SYMBOL_GPL;
@@
-EXPORT_SYMBOL_GPL(f);
// </smpl>
Signed-off-by: Julia Lawall <Julia.Lawall@lip6.fr>
Fixes: 035a61c314eb "clk: Make clk API return per-user struct clk instances"
Signed-off-by: Stephen Boyd <sboyd@codeaurora.org>
Diffstat (limited to 'drivers')
-rw-r--r-- | drivers/clk/clk.c | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/drivers/clk/clk.c b/drivers/clk/clk.c index eb0152961d3c..b9f85fc2ce3f 100644 --- a/drivers/clk/clk.c +++ b/drivers/clk/clk.c @@ -1350,7 +1350,6 @@ static unsigned long clk_core_get_rate(struct clk_core *clk) return rate; } -EXPORT_SYMBOL_GPL(clk_core_get_rate); /** * clk_get_rate - return the rate of clk |