aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/clk
diff options
context:
space:
mode:
authorNiels de Vos <ndevos@redhat.com>2012-12-13 13:12:25 +0100
committerMike Turquette <mturquette@linaro.org>2013-01-11 18:34:14 -0800
commit4895084c87ab0973308021d755596798160b682a (patch)
treed2f8ba583f46bfe9829eef5eab5774c87dde5861 /drivers/clk
parentclk: Don't mark shared helper functions as inline (diff)
downloadlinux-dev-4895084c87ab0973308021d755596798160b682a.tar.xz
linux-dev-4895084c87ab0973308021d755596798160b682a.zip
clk: export __clk_get_name for re-use in imx-ipu-v3 and others
This fixes the following error when building for arm-imx: > ERROR: "__clk_get_name" [drivers/staging/imx-drm/ipu-v3/imx-ipu-v3.ko] undefined! > make[1]: *** [__modpost] Error 1 > make: *** [modules] Error 2 There are valid usecases to get the name of a clock, be it for debugging purposes or to register a children of a clock like done in this IPU driver. Therefore exporting __clk_get_name() and make it available for others makes sense. Reported-by: Peter Robinson <pbrobinson@gmail.com> CC: Sascha Hauer <s.hauer@pengutronix.de> CC: Mike Turquette <mturquette@linaro.org> Signed-off-by: Niels de Vos <ndevos@redhat.com> Signed-off-by: Mike Turquette <mturquette@linaro.org> [mturquette@linaro.org: removal of inline made redundant by 65800b2]
Diffstat (limited to 'drivers/clk')
-rw-r--r--drivers/clk/clk.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/clk/clk.c b/drivers/clk/clk.c
index 9777466b81b9..eea70da02500 100644
--- a/drivers/clk/clk.c
+++ b/drivers/clk/clk.c
@@ -263,6 +263,7 @@ const char *__clk_get_name(struct clk *clk)
{
return !clk ? NULL : clk->name;
}
+EXPORT_SYMBOL_GPL(__clk_get_name);
struct clk_hw *__clk_get_hw(struct clk *clk)
{