diff mbox series

clk: meson-g12a: fix VPU clock parents

Message ID 20190313135503.3198-1-narmstrong@baylibre.com (mailing list archive)
State Not Applicable
Delegated to: Neil Armstrong
Headers show
Series clk: meson-g12a: fix VPU clock parents | expand

Commit Message

Neil Armstrong March 13, 2019, 1:55 p.m. UTC
First two VPU clock parents are wrong, fix it here.

Fixes: 085a4ea93d54 ("clk: meson: g12a: add peripheral clock controller")
Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
---
 drivers/clk/meson/g12a.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

Comments

Stephen Boyd March 18, 2019, 8:22 p.m. UTC | #1
Quoting Neil Armstrong (2019-03-13 06:55:03)
> First two VPU clock parents are wrong, fix it here.
> 
> Fixes: 085a4ea93d54 ("clk: meson: g12a: add peripheral clock controller")
> Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>

Are you going to send this as a PR later? Or I can pick this directly to
clk-fixes now?
Neil Armstrong March 18, 2019, 9:49 p.m. UTC | #2
On 18/03/2019 21:22, Stephen Boyd wrote:
> Quoting Neil Armstrong (2019-03-13 06:55:03)
>> First two VPU clock parents are wrong, fix it here.
>>
>> Fixes: 085a4ea93d54 ("clk: meson: g12a: add peripheral clock controller")
>> Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
> 
> Are you going to send this as a PR later? Or I can pick this directly to
> clk-fixes now?
> 

Two other fixes are coming in the next days,
I will send them in a PR later.

Neil
Jerome Brunet March 19, 2019, 9:11 a.m. UTC | #3
On Wed, 2019-03-13 at 14:55 +0100, Neil Armstrong wrote:
> First two VPU clock parents are wrong, fix it here.
> 
> Fixes: 085a4ea93d54 ("clk: meson: g12a: add peripheral clock controller")
> Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
> ---
>  drivers/clk/meson/g12a.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)

Acked-by: Jerome Brunet <jbrunet@baylibre.com>
Neil Armstrong March 19, 2019, 4:33 p.m. UTC | #4
On 19/03/2019 10:11, Jerome Brunet wrote:
> On Wed, 2019-03-13 at 14:55 +0100, Neil Armstrong wrote:
>> First two VPU clock parents are wrong, fix it here.
>>
>> Fixes: 085a4ea93d54 ("clk: meson: g12a: add peripheral clock controller")
>> Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
>> ---
>>  drivers/clk/meson/g12a.c | 2 +-
>>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> Acked-by: Jerome Brunet <jbrunet@baylibre.com>
> 

Will apply to fixes/drivers for 5.1
diff mbox series

Patch

diff --git a/drivers/clk/meson/g12a.c b/drivers/clk/meson/g12a.c
index 0e1ce8c03259..9b0151993bcc 100644
--- a/drivers/clk/meson/g12a.c
+++ b/drivers/clk/meson/g12a.c
@@ -960,7 +960,7 @@  static struct clk_regmap g12a_sd_emmc_c_clk0 = {
 /* VPU Clock */
 
 static const char * const g12a_vpu_parent_names[] = {
-	"fclk_div4", "fclk_div3", "fclk_div5", "fclk_div7",
+	"fclk_div3", "fclk_div4", "fclk_div5", "fclk_div7",
 	"mpll1", "vid_pll", "hifi_pll", "gp0_pll",
 };