linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] clk: tegra114: Fix msenc clock register
@ 2013-06-04 11:25 Mikko Perttunen
  2013-06-04 16:00 ` Stephen Warren
  2013-06-05  6:53 ` Mike Turquette
  0 siblings, 2 replies; 4+ messages in thread
From: Mikko Perttunen @ 2013-06-04 11:25 UTC (permalink / raw)
  To: linux-arm-kernel

The msenc clock's register was set to the usb3 clock's register.

Signed-off-by: Mikko Perttunen <mperttunen@nvidia.com>
Acked-by: Peter De Schrijver <pdeschrijver@nvidia.com>
---
 drivers/clk/tegra/clk-tegra114.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/drivers/clk/tegra/clk-tegra114.c b/drivers/clk/tegra/clk-tegra114.c
index d78e16e..c4f2e0a 100644
--- a/drivers/clk/tegra/clk-tegra114.c
+++ b/drivers/clk/tegra/clk-tegra114.c
@@ -1747,7 +1747,7 @@ static struct tegra_periph_init_data tegra_periph_clk_list[] = {
 	TEGRA_INIT_DATA_MUX("vi_sensor", "vi_sensor", "tegra_camera", mux_pllm_pllc2_c_c3_pllp_plla, CLK_SOURCE_VI_SENSOR, 20, &periph_l_regs, TEGRA_PERIPH_NO_RESET, vi_sensor),
 	TEGRA_INIT_DATA_INT8("vi", "vi", "tegra_camera", mux_pllm_pllc2_c_c3_pllp_plla, CLK_SOURCE_VI, 20, &periph_l_regs, 0, vi),
 	TEGRA_INIT_DATA_INT8("epp", NULL, "epp", mux_pllm_pllc2_c_c3_pllp_plla, CLK_SOURCE_EPP, 19, &periph_l_regs, 0, epp),
-	TEGRA_INIT_DATA_INT8("msenc", NULL, "msenc", mux_pllm_pllc2_c_c3_pllp_plla, CLK_SOURCE_MSENC, 91, &periph_h_regs, TEGRA_PERIPH_WAR_1005168, msenc),
+	TEGRA_INIT_DATA_INT8("msenc", NULL, "msenc", mux_pllm_pllc2_c_c3_pllp_plla, CLK_SOURCE_MSENC, 91, &periph_u_regs, TEGRA_PERIPH_WAR_1005168, msenc),
 	TEGRA_INIT_DATA_INT8("tsec", NULL, "tsec", mux_pllp_pllc2_c_c3_pllm_clkm, CLK_SOURCE_TSEC, 83, &periph_u_regs, 0, tsec),
 	TEGRA_INIT_DATA_INT8("host1x", NULL, "host1x", mux_pllm_pllc2_c_c3_pllp_plla, CLK_SOURCE_HOST1X, 28, &periph_l_regs, 0, host1x),
 	TEGRA_INIT_DATA_MUX8("hdmi", NULL, "hdmi", mux_pllp_pllm_plld_plla_pllc_plld2_clkm, CLK_SOURCE_HDMI, 51, &periph_h_regs, 0, hdmi),
-- 
1.8.1.5

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

* [PATCH] clk: tegra114: Fix msenc clock register
  2013-06-04 11:25 [PATCH] clk: tegra114: Fix msenc clock register Mikko Perttunen
@ 2013-06-04 16:00 ` Stephen Warren
  2013-06-05  6:27   ` Mikko Perttunen
  2013-06-05  6:53 ` Mike Turquette
  1 sibling, 1 reply; 4+ messages in thread
From: Stephen Warren @ 2013-06-04 16:00 UTC (permalink / raw)
  To: linux-arm-kernel

On 06/04/2013 05:25 AM, Mikko Perttunen wrote:
> The msenc clock's register was set to the usb3 clock's register.

drivers/clk changes should be sent to Mike Turquette (CC'd here). See
the output of ./scripts/get_maintainer.pl and/or the MAINTAINERS file.

Hopefully he can pick this up from the ARM mailing list - if not, I'm
sure he'll let you know to resend it.

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

* [PATCH] clk: tegra114: Fix msenc clock register
  2013-06-04 16:00 ` Stephen Warren
@ 2013-06-05  6:27   ` Mikko Perttunen
  0 siblings, 0 replies; 4+ messages in thread
From: Mikko Perttunen @ 2013-06-05  6:27 UTC (permalink / raw)
  To: linux-arm-kernel

Ah, sorry about that. I did actually use get_maintainer.pl, and it listed  
you
on the first line :) It looks like only drivers/clk/clk-* is assigned to  
Mike
according to MAINTAINERS, and the tegra/ subdirectory isn't.

On Tue, 04 Jun 2013 19:00:27 +0300, Stephen Warren <swarren@wwwdotorg.org>  
wrote:

> On 06/04/2013 05:25 AM, Mikko Perttunen wrote:
>> The msenc clock's register was set to the usb3 clock's register.
>
> drivers/clk changes should be sent to Mike Turquette (CC'd here). See
> the output of ./scripts/get_maintainer.pl and/or the MAINTAINERS file.
>
> Hopefully he can pick this up from the ARM mailing list - if not, I'm
> sure he'll let you know to resend it.

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

* [PATCH] clk: tegra114: Fix msenc clock register
  2013-06-04 11:25 [PATCH] clk: tegra114: Fix msenc clock register Mikko Perttunen
  2013-06-04 16:00 ` Stephen Warren
@ 2013-06-05  6:53 ` Mike Turquette
  1 sibling, 0 replies; 4+ messages in thread
From: Mike Turquette @ 2013-06-05  6:53 UTC (permalink / raw)
  To: linux-arm-kernel

Quoting Mikko Perttunen (2013-06-04 04:25:43)
> The msenc clock's register was set to the usb3 clock's register.
> 
> Signed-off-by: Mikko Perttunen <mperttunen@nvidia.com>
> Acked-by: Peter De Schrijver <pdeschrijver@nvidia.com>

Pulled into clk-next.

Thanks,
Mike

> ---
>  drivers/clk/tegra/clk-tegra114.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/drivers/clk/tegra/clk-tegra114.c b/drivers/clk/tegra/clk-tegra114.c
> index d78e16e..c4f2e0a 100644
> --- a/drivers/clk/tegra/clk-tegra114.c
> +++ b/drivers/clk/tegra/clk-tegra114.c
> @@ -1747,7 +1747,7 @@ static struct tegra_periph_init_data tegra_periph_clk_list[] = {
>         TEGRA_INIT_DATA_MUX("vi_sensor", "vi_sensor", "tegra_camera", mux_pllm_pllc2_c_c3_pllp_plla, CLK_SOURCE_VI_SENSOR, 20, &periph_l_regs, TEGRA_PERIPH_NO_RESET, vi_sensor),
>         TEGRA_INIT_DATA_INT8("vi", "vi", "tegra_camera", mux_pllm_pllc2_c_c3_pllp_plla, CLK_SOURCE_VI, 20, &periph_l_regs, 0, vi),
>         TEGRA_INIT_DATA_INT8("epp", NULL, "epp", mux_pllm_pllc2_c_c3_pllp_plla, CLK_SOURCE_EPP, 19, &periph_l_regs, 0, epp),
> -       TEGRA_INIT_DATA_INT8("msenc", NULL, "msenc", mux_pllm_pllc2_c_c3_pllp_plla, CLK_SOURCE_MSENC, 91, &periph_h_regs, TEGRA_PERIPH_WAR_1005168, msenc),
> +       TEGRA_INIT_DATA_INT8("msenc", NULL, "msenc", mux_pllm_pllc2_c_c3_pllp_plla, CLK_SOURCE_MSENC, 91, &periph_u_regs, TEGRA_PERIPH_WAR_1005168, msenc),
>         TEGRA_INIT_DATA_INT8("tsec", NULL, "tsec", mux_pllp_pllc2_c_c3_pllm_clkm, CLK_SOURCE_TSEC, 83, &periph_u_regs, 0, tsec),
>         TEGRA_INIT_DATA_INT8("host1x", NULL, "host1x", mux_pllm_pllc2_c_c3_pllp_plla, CLK_SOURCE_HOST1X, 28, &periph_l_regs, 0, host1x),
>         TEGRA_INIT_DATA_MUX8("hdmi", NULL, "hdmi", mux_pllp_pllm_plld_plla_pllc_plld2_clkm, CLK_SOURCE_HDMI, 51, &periph_h_regs, 0, hdmi),
> -- 
> 1.8.1.5
> 
> 
> _______________________________________________
> linux-arm-kernel mailing list
> linux-arm-kernel at lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

end of thread, other threads:[~2013-06-05  6:53 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-06-04 11:25 [PATCH] clk: tegra114: Fix msenc clock register Mikko Perttunen
2013-06-04 16:00 ` Stephen Warren
2013-06-05  6:27   ` Mikko Perttunen
2013-06-05  6:53 ` Mike Turquette

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