linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] clk: meson-g12a: fix VPU clock parents
@ 2019-03-13 13:55 Neil Armstrong
  2019-03-18 20:22 ` Stephen Boyd
  2019-03-19  9:11 ` Jerome Brunet
  0 siblings, 2 replies; 5+ messages in thread
From: Neil Armstrong @ 2019-03-13 13:55 UTC (permalink / raw)
  To: jbrunet
  Cc: Neil Armstrong, linux-clk, linux-amlogic, linux-arm-kernel, linux-kernel

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(-)

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",
 };
 
-- 
2.20.1


^ permalink raw reply related	[flat|nested] 5+ messages in thread

* Re: [PATCH] clk: meson-g12a: fix VPU clock parents
  2019-03-13 13:55 [PATCH] clk: meson-g12a: fix VPU clock parents Neil Armstrong
@ 2019-03-18 20:22 ` Stephen Boyd
  2019-03-18 21:49   ` Neil Armstrong
  2019-03-19  9:11 ` Jerome Brunet
  1 sibling, 1 reply; 5+ messages in thread
From: Stephen Boyd @ 2019-03-18 20:22 UTC (permalink / raw)
  To: Neil Armstrong, jbrunet
  Cc: Neil Armstrong, linux-clk, linux-amlogic, linux-arm-kernel, linux-kernel

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?


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] clk: meson-g12a: fix VPU clock parents
  2019-03-18 20:22 ` Stephen Boyd
@ 2019-03-18 21:49   ` Neil Armstrong
  0 siblings, 0 replies; 5+ messages in thread
From: Neil Armstrong @ 2019-03-18 21:49 UTC (permalink / raw)
  To: Stephen Boyd, jbrunet
  Cc: linux-clk, linux-amlogic, linux-arm-kernel, linux-kernel

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

^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] clk: meson-g12a: fix VPU clock parents
  2019-03-13 13:55 [PATCH] clk: meson-g12a: fix VPU clock parents Neil Armstrong
  2019-03-18 20:22 ` Stephen Boyd
@ 2019-03-19  9:11 ` Jerome Brunet
  2019-03-19 16:33   ` Neil Armstrong
  1 sibling, 1 reply; 5+ messages in thread
From: Jerome Brunet @ 2019-03-19  9:11 UTC (permalink / raw)
  To: Neil Armstrong; +Cc: linux-clk, linux-amlogic, linux-arm-kernel, linux-kernel

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>


^ permalink raw reply	[flat|nested] 5+ messages in thread

* Re: [PATCH] clk: meson-g12a: fix VPU clock parents
  2019-03-19  9:11 ` Jerome Brunet
@ 2019-03-19 16:33   ` Neil Armstrong
  0 siblings, 0 replies; 5+ messages in thread
From: Neil Armstrong @ 2019-03-19 16:33 UTC (permalink / raw)
  To: Jerome Brunet; +Cc: linux-clk, linux-amlogic, linux-arm-kernel, linux-kernel

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

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2019-03-19 16:33 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-03-13 13:55 [PATCH] clk: meson-g12a: fix VPU clock parents Neil Armstrong
2019-03-18 20:22 ` Stephen Boyd
2019-03-18 21:49   ` Neil Armstrong
2019-03-19  9:11 ` Jerome Brunet
2019-03-19 16:33   ` Neil Armstrong

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).