All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] clk: meson: axg-audio: fix input clock name
@ 2018-12-11 12:47 ` Jerome Brunet
  0 siblings, 0 replies; 4+ messages in thread
From: Jerome Brunet @ 2018-12-11 12:47 UTC (permalink / raw)
  To: Neil Armstrong, Kevin Hilman, Carlo Caione
  Cc: Jerome Brunet, linux-clk, linux-amlogic, linux-kernel, devicetree

The name of input clock is not aligned with the rest of the tree
Because of this, the audio peripheral clocks are orphaned.

Fixes: 1222ab89328f ("clk: meson: axg-audio: use the clk input helper function")
Signed-off-by: Jerome Brunet <jbrunet@baylibre.com>
---
 Neil,

 Feel free to squash this with commit 1222ab89328f if you prefer

 Cheers
 Jerome

 drivers/clk/meson/axg-audio.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/clk/meson/axg-audio.c b/drivers/clk/meson/axg-audio.c
index 72b717e61a68..8ac3a2295473 100644
--- a/drivers/clk/meson/axg-audio.c
+++ b/drivers/clk/meson/axg-audio.c
@@ -752,7 +752,7 @@ static int axg_audio_clkc_probe(struct platform_device *pdev)
 	}
 
 	/* Register the peripheral input clock */
-	hw = meson_clk_hw_register_input(dev, "pclk", "audio_pclk", 0);
+	hw = meson_clk_hw_register_input(dev, "pclk", "axg_audio_pclk", 0);
 	if (IS_ERR(hw))
 		return PTR_ERR(hw);
 
-- 
2.19.2


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

* [PATCH] clk: meson: axg-audio: fix input clock name
@ 2018-12-11 12:47 ` Jerome Brunet
  0 siblings, 0 replies; 4+ messages in thread
From: Jerome Brunet @ 2018-12-11 12:47 UTC (permalink / raw)
  To: Neil Armstrong, Kevin Hilman, Carlo Caione
  Cc: linux-amlogic, devicetree, linux-clk, linux-kernel, Jerome Brunet

The name of input clock is not aligned with the rest of the tree
Because of this, the audio peripheral clocks are orphaned.

Fixes: 1222ab89328f ("clk: meson: axg-audio: use the clk input helper function")
Signed-off-by: Jerome Brunet <jbrunet@baylibre.com>
---
 Neil,

 Feel free to squash this with commit 1222ab89328f if you prefer

 Cheers
 Jerome

 drivers/clk/meson/axg-audio.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/clk/meson/axg-audio.c b/drivers/clk/meson/axg-audio.c
index 72b717e61a68..8ac3a2295473 100644
--- a/drivers/clk/meson/axg-audio.c
+++ b/drivers/clk/meson/axg-audio.c
@@ -752,7 +752,7 @@ static int axg_audio_clkc_probe(struct platform_device *pdev)
 	}
 
 	/* Register the peripheral input clock */
-	hw = meson_clk_hw_register_input(dev, "pclk", "audio_pclk", 0);
+	hw = meson_clk_hw_register_input(dev, "pclk", "axg_audio_pclk", 0);
 	if (IS_ERR(hw))
 		return PTR_ERR(hw);
 
-- 
2.19.2


_______________________________________________
linux-amlogic mailing list
linux-amlogic@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-amlogic

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

* Re: [PATCH] clk: meson: axg-audio: fix input clock name
  2018-12-11 12:47 ` Jerome Brunet
@ 2018-12-11 15:06   ` Neil Armstrong
  -1 siblings, 0 replies; 4+ messages in thread
From: Neil Armstrong @ 2018-12-11 15:06 UTC (permalink / raw)
  To: Jerome Brunet, Kevin Hilman, Carlo Caione
  Cc: linux-clk, linux-amlogic, linux-kernel, devicetree

On 11/12/2018 13:47, Jerome Brunet wrote:
> The name of input clock is not aligned with the rest of the tree
> Because of this, the audio peripheral clocks are orphaned.
> 
> Fixes: 1222ab89328f ("clk: meson: axg-audio: use the clk input helper function")
> Signed-off-by: Jerome Brunet <jbrunet@baylibre.com>
> ---
>  Neil,
> 
>  Feel free to squash this with commit 1222ab89328f if you prefer

Well, I'm lazy so I squashed it :-)

> 
>  Cheers
>  Jerome
> 
>  drivers/clk/meson/axg-audio.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/clk/meson/axg-audio.c b/drivers/clk/meson/axg-audio.c
> index 72b717e61a68..8ac3a2295473 100644
> --- a/drivers/clk/meson/axg-audio.c
> +++ b/drivers/clk/meson/axg-audio.c
> @@ -752,7 +752,7 @@ static int axg_audio_clkc_probe(struct platform_device *pdev)
>  	}
>  
>  	/* Register the peripheral input clock */
> -	hw = meson_clk_hw_register_input(dev, "pclk", "audio_pclk", 0);
> +	hw = meson_clk_hw_register_input(dev, "pclk", "axg_audio_pclk", 0);
>  	if (IS_ERR(hw))
>  		return PTR_ERR(hw);
>  
> 


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

* Re: [PATCH] clk: meson: axg-audio: fix input clock name
@ 2018-12-11 15:06   ` Neil Armstrong
  0 siblings, 0 replies; 4+ messages in thread
From: Neil Armstrong @ 2018-12-11 15:06 UTC (permalink / raw)
  To: Jerome Brunet, Kevin Hilman, Carlo Caione
  Cc: linux-amlogic, devicetree, linux-clk, linux-kernel

On 11/12/2018 13:47, Jerome Brunet wrote:
> The name of input clock is not aligned with the rest of the tree
> Because of this, the audio peripheral clocks are orphaned.
> 
> Fixes: 1222ab89328f ("clk: meson: axg-audio: use the clk input helper function")
> Signed-off-by: Jerome Brunet <jbrunet@baylibre.com>
> ---
>  Neil,
> 
>  Feel free to squash this with commit 1222ab89328f if you prefer

Well, I'm lazy so I squashed it :-)

> 
>  Cheers
>  Jerome
> 
>  drivers/clk/meson/axg-audio.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/clk/meson/axg-audio.c b/drivers/clk/meson/axg-audio.c
> index 72b717e61a68..8ac3a2295473 100644
> --- a/drivers/clk/meson/axg-audio.c
> +++ b/drivers/clk/meson/axg-audio.c
> @@ -752,7 +752,7 @@ static int axg_audio_clkc_probe(struct platform_device *pdev)
>  	}
>  
>  	/* Register the peripheral input clock */
> -	hw = meson_clk_hw_register_input(dev, "pclk", "audio_pclk", 0);
> +	hw = meson_clk_hw_register_input(dev, "pclk", "axg_audio_pclk", 0);
>  	if (IS_ERR(hw))
>  		return PTR_ERR(hw);
>  
> 


_______________________________________________
linux-amlogic mailing list
linux-amlogic@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-amlogic

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

end of thread, other threads:[~2018-12-11 15:06 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-12-11 12:47 [PATCH] clk: meson: axg-audio: fix input clock name Jerome Brunet
2018-12-11 12:47 ` Jerome Brunet
2018-12-11 15:06 ` Neil Armstrong
2018-12-11 15:06   ` Neil Armstrong

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.