* [PATCH 1/1] SH7724 clock fixes: Fix the device name for the CMT Add a clock called usb0 so that r8
@ 2014-07-15 5:55 Daniel Palmer
2014-07-15 6:02 ` [PATCH 1/1] SH7724 clock fixes: Fix the device name for the CMT Add a clock called usb0 so tha Kuninori Morimoto
2014-07-15 6:03 ` Kuninori Morimoto
0 siblings, 2 replies; 3+ messages in thread
From: Daniel Palmer @ 2014-07-15 5:55 UTC (permalink / raw)
To: linux-sh
Signed-off-by: Daniel Palmer <danieruru@gmail.com>
---
arch/sh/kernel/cpu/sh4a/clock-sh7724.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/arch/sh/kernel/cpu/sh4a/clock-sh7724.c b/arch/sh/kernel/cpu/sh4a/clock-sh7724.c
index f579dd5..d37e7db 100644
--- a/arch/sh/kernel/cpu/sh4a/clock-sh7724.c
+++ b/arch/sh/kernel/cpu/sh4a/clock-sh7724.c
@@ -307,7 +307,7 @@ static struct clk_lookup lookups[] = {
CLKDEV_ICK_ID("fck", "sh-tmu.0", &mstp_clks[HWBLK_TMU0]),
CLKDEV_ICK_ID("fck", "sh-tmu.1", &mstp_clks[HWBLK_TMU1]),
- CLKDEV_ICK_ID("fck", "sh-cmt-16.0", &mstp_clks[HWBLK_CMT]),
+ CLKDEV_ICK_ID("fck", "sh-cmt-32.0", &mstp_clks[HWBLK_CMT]),
CLKDEV_DEV_ID("sh-wdt.0", &mstp_clks[HWBLK_RWDT]),
CLKDEV_DEV_ID("sh-dma-engine.1", &mstp_clks[HWBLK_DMAC1]),
@@ -332,6 +332,7 @@ static struct clk_lookup lookups[] = {
CLKDEV_CON_ID("tsif0", &mstp_clks[HWBLK_TSIF]),
CLKDEV_DEV_ID("renesas_usbhs.1", &mstp_clks[HWBLK_USB1]),
CLKDEV_DEV_ID("renesas_usbhs.0", &mstp_clks[HWBLK_USB0]),
+ CLKDEV_CON_ID("usb0", &mstp_clks[HWBLK_USB0]),
CLKDEV_CON_ID("2dg0", &mstp_clks[HWBLK_2DG]),
CLKDEV_DEV_ID("sh_mobile_sdhi.0", &mstp_clks[HWBLK_SDHI0]),
CLKDEV_DEV_ID("sh_mobile_sdhi.1", &mstp_clks[HWBLK_SDHI1]),
--
2.0.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH 1/1] SH7724 clock fixes: Fix the device name for the CMT Add a clock called usb0 so tha
2014-07-15 5:55 [PATCH 1/1] SH7724 clock fixes: Fix the device name for the CMT Add a clock called usb0 so that r8 Daniel Palmer
@ 2014-07-15 6:02 ` Kuninori Morimoto
2014-07-15 6:03 ` Kuninori Morimoto
1 sibling, 0 replies; 3+ messages in thread
From: Kuninori Morimoto @ 2014-07-15 6:02 UTC (permalink / raw)
To: linux-sh
Hi Daniel
>
> Signed-off-by: Daniel Palmer <danieruru@gmail.com>
> ---
For code,
Acked-by: Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
But, very long "Subject", and no git log :)
You can separate it to short Subject and short log ?
> arch/sh/kernel/cpu/sh4a/clock-sh7724.c | 3 ++-
> 1 file changed, 2 insertions(+), 1 deletion(-)
>
> diff --git a/arch/sh/kernel/cpu/sh4a/clock-sh7724.c b/arch/sh/kernel/cpu/sh4a/clock-sh7724.c
> index f579dd5..d37e7db 100644
> --- a/arch/sh/kernel/cpu/sh4a/clock-sh7724.c
> +++ b/arch/sh/kernel/cpu/sh4a/clock-sh7724.c
> @@ -307,7 +307,7 @@ static struct clk_lookup lookups[] = {
> CLKDEV_ICK_ID("fck", "sh-tmu.0", &mstp_clks[HWBLK_TMU0]),
> CLKDEV_ICK_ID("fck", "sh-tmu.1", &mstp_clks[HWBLK_TMU1]),
>
> - CLKDEV_ICK_ID("fck", "sh-cmt-16.0", &mstp_clks[HWBLK_CMT]),
> + CLKDEV_ICK_ID("fck", "sh-cmt-32.0", &mstp_clks[HWBLK_CMT]),
> CLKDEV_DEV_ID("sh-wdt.0", &mstp_clks[HWBLK_RWDT]),
> CLKDEV_DEV_ID("sh-dma-engine.1", &mstp_clks[HWBLK_DMAC1]),
>
> @@ -332,6 +332,7 @@ static struct clk_lookup lookups[] = {
> CLKDEV_CON_ID("tsif0", &mstp_clks[HWBLK_TSIF]),
> CLKDEV_DEV_ID("renesas_usbhs.1", &mstp_clks[HWBLK_USB1]),
> CLKDEV_DEV_ID("renesas_usbhs.0", &mstp_clks[HWBLK_USB0]),
> + CLKDEV_CON_ID("usb0", &mstp_clks[HWBLK_USB0]),
> CLKDEV_CON_ID("2dg0", &mstp_clks[HWBLK_2DG]),
> CLKDEV_DEV_ID("sh_mobile_sdhi.0", &mstp_clks[HWBLK_SDHI0]),
> CLKDEV_DEV_ID("sh_mobile_sdhi.1", &mstp_clks[HWBLK_SDHI1]),
> --
> 2.0.1
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-sh" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH 1/1] SH7724 clock fixes: Fix the device name for the CMT Add a clock called usb0 so tha
2014-07-15 5:55 [PATCH 1/1] SH7724 clock fixes: Fix the device name for the CMT Add a clock called usb0 so that r8 Daniel Palmer
2014-07-15 6:02 ` [PATCH 1/1] SH7724 clock fixes: Fix the device name for the CMT Add a clock called usb0 so tha Kuninori Morimoto
@ 2014-07-15 6:03 ` Kuninori Morimoto
1 sibling, 0 replies; 3+ messages in thread
From: Kuninori Morimoto @ 2014-07-15 6:03 UTC (permalink / raw)
To: linux-sh
Hi Daniel again
> @@ -332,6 +332,7 @@ static struct clk_lookup lookups[] = {
> CLKDEV_CON_ID("tsif0", &mstp_clks[HWBLK_TSIF]),
> CLKDEV_DEV_ID("renesas_usbhs.1", &mstp_clks[HWBLK_USB1]),
> CLKDEV_DEV_ID("renesas_usbhs.0", &mstp_clks[HWBLK_USB0]),
> + CLKDEV_CON_ID("usb0", &mstp_clks[HWBLK_USB0]),
> CLKDEV_CON_ID("2dg0", &mstp_clks[HWBLK_2DG]),
> CLKDEV_DEV_ID("sh_mobile_sdhi.0", &mstp_clks[HWBLK_SDHI0]),
> CLKDEV_DEV_ID("sh_mobile_sdhi.1", &mstp_clks[HWBLK_SDHI1]),
Can you please care USB1 too ?
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2014-07-15 6:03 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-07-15 5:55 [PATCH 1/1] SH7724 clock fixes: Fix the device name for the CMT Add a clock called usb0 so that r8 Daniel Palmer
2014-07-15 6:02 ` [PATCH 1/1] SH7724 clock fixes: Fix the device name for the CMT Add a clock called usb0 so tha Kuninori Morimoto
2014-07-15 6:03 ` Kuninori Morimoto
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).