diff options
author | Thierry Reding <thierry.reding@gmail.com> | 2013-09-03 03:43:51 -0400 |
---|---|---|
committer | Mike Turquette <mturquette@linaro.org> | 2013-09-03 16:41:29 -0400 |
commit | b05c683637fd538686030ec46c6717439d5571ab (patch) | |
tree | 5b9631d8c33363035b4e91077c275ef8cf35405a /drivers/clk/clk.c | |
parent | 903efc553f738030a4ffa23fa03e7f329655c1c2 (diff) |
clk: Move symbol export to proper location
The __clk_get_flags() symbol is exported immediately following the
clk_unprepare_unused_subtree() function. This is unusual, since a symbol
export typically follows body of the function that it exports.
Signed-off-by: Thierry Reding <treding@nvidia.com>
Signed-off-by: Mike Turquette <mturquette@linaro.org>
Diffstat (limited to 'drivers/clk/clk.c')
-rw-r--r-- | drivers/clk/clk.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/clk.c b/drivers/clk/clk.c index 02e75d4e0a77..cc4cb6fd7d83 100644 --- a/drivers/clk/clk.c +++ b/drivers/clk/clk.c | |||
@@ -458,7 +458,6 @@ static void clk_unprepare_unused_subtree(struct clk *clk) | |||
458 | clk->ops->unprepare(clk->hw); | 458 | clk->ops->unprepare(clk->hw); |
459 | } | 459 | } |
460 | } | 460 | } |
461 | EXPORT_SYMBOL_GPL(__clk_get_flags); | ||
462 | 461 | ||
463 | /* caller must hold prepare_lock */ | 462 | /* caller must hold prepare_lock */ |
464 | static void clk_disable_unused_subtree(struct clk *clk) | 463 | static void clk_disable_unused_subtree(struct clk *clk) |
@@ -607,6 +606,7 @@ unsigned long __clk_get_flags(struct clk *clk) | |||
607 | { | 606 | { |
608 | return !clk ? 0 : clk->flags; | 607 | return !clk ? 0 : clk->flags; |
609 | } | 608 | } |
609 | EXPORT_SYMBOL_GPL(__clk_get_flags); | ||
610 | 610 | ||
611 | bool __clk_is_prepared(struct clk *clk) | 611 | bool __clk_is_prepared(struct clk *clk) |
612 | { | 612 | { |