diff options
author | Tero Kristo <t-kristo@ti.com> | 2020-04-30 11:36:38 +0300 |
---|---|---|
committer | Stephen Boyd <sboyd@kernel.org> | 2020-05-14 12:55:31 -0700 |
commit | f45c8a501d1abbb74e9fac23c3fdd6c9ab3673d9 (patch) | |
tree | d43cc4c799965443728ec61cd4007494ebb0d309 /drivers/clk/ti | |
parent | f968045fb92e5408c25f1b4eae21bab4882e88e8 (diff) | |
download | linux-stable-f45c8a501d1abbb74e9fac23c3fdd6c9ab3673d9.tar.gz linux-stable-f45c8a501d1abbb74e9fac23c3fdd6c9ab3673d9.tar.bz2 linux-stable-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 }, }; |