diff options
author | Shawn Guo <shawn.guo@linaro.org> | 2012-03-27 03:23:21 -0400 |
---|---|---|
committer | Mike Turquette <mturquette@linaro.org> | 2012-04-24 19:37:38 -0400 |
commit | c0d2530c03cbf3741cb7a0f8ebae93e7a563fc58 (patch) | |
tree | d9a5492ab51ca80644620912fe82a27b76c4abf2 /drivers/clk/clk-gate.c | |
parent | 10363b5838b4d5dcbf01db219f35e91aa94f24c6 (diff) |
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-gate.c')
-rw-r--r-- | drivers/clk/clk-gate.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/drivers/clk/clk-gate.c b/drivers/clk/clk-gate.c index b5902e2ef2fd..b688f4775859 100644 --- a/drivers/clk/clk-gate.c +++ b/drivers/clk/clk-gate.c | |||
@@ -71,7 +71,6 @@ static int clk_gate_enable(struct clk_hw *hw) | |||
71 | 71 | ||
72 | return 0; | 72 | return 0; |
73 | } | 73 | } |
74 | EXPORT_SYMBOL_GPL(clk_gate_enable); | ||
75 | 74 | ||
76 | static void clk_gate_disable(struct clk_hw *hw) | 75 | static void clk_gate_disable(struct clk_hw *hw) |
77 | { | 76 | { |
@@ -82,7 +81,6 @@ static void clk_gate_disable(struct clk_hw *hw) | |||
82 | else | 81 | else |
83 | clk_gate_clear_bit(gate); | 82 | clk_gate_clear_bit(gate); |
84 | } | 83 | } |
85 | EXPORT_SYMBOL_GPL(clk_gate_disable); | ||
86 | 84 | ||
87 | static int clk_gate_is_enabled(struct clk_hw *hw) | 85 | static int clk_gate_is_enabled(struct clk_hw *hw) |
88 | { | 86 | { |
@@ -99,7 +97,6 @@ static int clk_gate_is_enabled(struct clk_hw *hw) | |||
99 | 97 | ||
100 | return reg ? 1 : 0; | 98 | return reg ? 1 : 0; |
101 | } | 99 | } |
102 | EXPORT_SYMBOL_GPL(clk_gate_is_enabled); | ||
103 | 100 | ||
104 | struct clk_ops clk_gate_ops = { | 101 | struct clk_ops clk_gate_ops = { |
105 | .enable = clk_gate_enable, | 102 | .enable = clk_gate_enable, |