aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/clk
diff options
context:
space:
mode:
authorTero Kristo <t-kristo@ti.com>2019-09-12 16:26:04 +0300
committerTero Kristo <t-kristo@ti.com>2019-10-31 15:18:28 +0200
commit581eb61a9465e1b9fc1df1a8912100702d7c2f31 (patch)
tree62de72e1eac32973ec82d6ba931fed3df4763741 /drivers/clk
parentLinux 5.4-rc1 (diff)
downloadlinux-dev-581eb61a9465e1b9fc1df1a8912100702d7c2f31.tar.xz
linux-dev-581eb61a9465e1b9fc1df1a8912100702d7c2f31.zip
clk: ti: clkctrl: fix setting up clkctrl clocks
Apply the proper register function for clkctrl clocks, so they get registered under the clk_hw_omap list also. This allows checking their type runtime. Signed-off-by: Tero Kristo <t-kristo@ti.com>
Diffstat (limited to 'drivers/clk')
-rw-r--r--drivers/clk/ti/clkctrl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/ti/clkctrl.c b/drivers/clk/ti/clkctrl.c
index 975995eea15c..a914df2e9e1b 100644
--- a/drivers/clk/ti/clkctrl.c
+++ b/drivers/clk/ti/clkctrl.c
@@ -622,7 +622,7 @@ static void __init _ti_omap4_clkctrl_setup(struct device_node *node)
init.ops = &omap4_clkctrl_clk_ops;
hw->hw.init = &init;
- clk = ti_clk_register(NULL, &hw->hw, init.name);
+ clk = ti_clk_register_omap_hw(NULL, &hw->hw, init.name);
if (IS_ERR_OR_NULL(clk))
goto cleanup;