summaryrefslogtreecommitdiffstats
path: root/drivers/clk
diff options
context:
space:
mode:
authorStephen Boyd2019-05-24 02:11:57 +0200
committerStephen Boyd2019-05-24 02:11:57 +0200
commit30d5a945743cd05ec5c847f2e38c2fbda5e00944 (patch)
treefb31f1be982c2d35ccc155a716cfdd0ddfdc7d5d /drivers/clk
parentclk: Remove ifdef for COMMON_CLK in clk-provider.h (diff)
downloadkernel-qcow2-linux-30d5a945743cd05ec5c847f2e38c2fbda5e00944.tar.gz
kernel-qcow2-linux-30d5a945743cd05ec5c847f2e38c2fbda5e00944.tar.xz
kernel-qcow2-linux-30d5a945743cd05ec5c847f2e38c2fbda5e00944.zip
clk: Unexport __clk_of_table
This symbol doesn't need to be exported to clk providers anymore. Originally, it was hidden inside clk.c, but then OMAP needed to get access to it in commit 819b4861c18d ("CLK: ti: add init support for clock IP blocks"), but eventually that code also changed in commit c08ee14cc663 ("clk: ti: change clock init to use generic of_clk_init") and we were left with this exported. Move this back into clk.c so that it isn't exposed anymore. Signed-off-by: Stephen Boyd <sboyd@kernel.org>
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 aa51756fd4d6..b34e84bb8167 100644
--- a/drivers/clk/clk.c
+++ b/drivers/clk/clk.c
@@ -4038,6 +4038,7 @@ struct of_clk_provider {
void *data;
};
+extern struct of_device_id __clk_of_table;
static const struct of_device_id __clk_of_table_sentinel
__used __section(__clk_of_table_end);