diff options
author | Tero Kristo <t-kristo@ti.com> | 2020-04-30 10:36:38 +0200 |
---|---|---|
committer | Stephen Boyd <sboyd@kernel.org> | 2020-05-14 21:55:31 +0200 |
commit | f45c8a501d1abbb74e9fac23c3fdd6c9ab3673d9 (patch) | |
tree | d43cc4c799965443728ec61cd4007494ebb0d309 /drivers/clk/ti | |
parent | clk: ti: omap5: Add proper parent clocks for l4-secure clocks (diff) | |
download | linux-f45c8a501d1abbb74e9fac23c3fdd6c9ab3673d9.tar.xz linux-f45c8a501d1abbb74e9fac23c3fdd6c9ab3673d9.zip |
clk: ti: dra7xx: fix gpu clkctrl parent
gpu_cm:* parent clock name is wrong, replace this with correct
gpu-clkctrl:* clock. Otherwise the clock ends up in the orphaned list.
Signed-off-by: Tero Kristo <t-kristo@ti.com>
Link: https://lkml.kernel.org/r/20200430083640.8621-2-t-kristo@ti.com
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
Diffstat (limited to 'drivers/clk/ti')
-rw-r--r-- | drivers/clk/ti/clk-7xx.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/clk/ti/clk-7xx.c b/drivers/clk/ti/clk-7xx.c index 14b645093107..366cb75378cb 100644 --- a/drivers/clk/ti/clk-7xx.c +++ b/drivers/clk/ti/clk-7xx.c @@ -328,7 +328,7 @@ static const struct omap_clkctrl_bit_data dra7_gpu_core_bit_data[] __initconst = }; static const struct omap_clkctrl_reg_data dra7_gpu_clkctrl_regs[] __initconst = { - { DRA7_GPU_CLKCTRL, dra7_gpu_core_bit_data, CLKF_SW_SUP, "gpu_cm:clk:0000:24", }, + { DRA7_GPU_CLKCTRL, dra7_gpu_core_bit_data, CLKF_SW_SUP, "gpu-clkctrl:0000:24", }, { 0 }, }; |