linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] Renesas USB r8a66597 HCD update for v3.14
@ 2013-12-13  2:28 Simon Horman
  2013-12-13  2:29 ` [PATCH] usb: r8a66597-hcd: Convert to clk_prepare/unprepare Simon Horman
  2013-12-20 19:26 ` [GIT PULL] Renesas USB r8a66597 HCD update for v3.14 Kevin Hilman
  0 siblings, 2 replies; 3+ messages in thread
From: Simon Horman @ 2013-12-13  2:28 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Olof, Hi Kevin, Hi Arnd,

please consider this Renesas USB r8a66597 HCD update for v3.14

It has been acked by Greg Kroah-Hartman.
I would like it to go through the arm-soc tree as it
is a dependency for forthcoming CCF changes.

The following changes since commit 6ce4eac1f600b34f2f7f58f9cd8f0503d79e42ae:

  Linux 3.13-rc1 (2013-11-22 11:30:55 -0800)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git tags/renesas-usb-r8a66597-hcd-for-v3.14

for you to fetch changes up to 9b547a882e9ffec67bb41a4e66b4bcc0e91a2737:

  usb: r8a66597-hcd: Convert to clk_prepare/unprepare (2013-11-28 17:19:11 +0900)

----------------------------------------------------------------
Renesas USB r8a66597 HCD update for v3.14

Convert to clk_prepare/unprepare

----------------------------------------------------------------
Laurent Pinchart (1):
      usb: r8a66597-hcd: Convert to clk_prepare/unprepare

 drivers/usb/host/r8a66597-hcd.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

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

* [PATCH] usb: r8a66597-hcd: Convert to clk_prepare/unprepare
  2013-12-13  2:28 [GIT PULL] Renesas USB r8a66597 HCD update for v3.14 Simon Horman
@ 2013-12-13  2:29 ` Simon Horman
  2013-12-20 19:26 ` [GIT PULL] Renesas USB r8a66597 HCD update for v3.14 Kevin Hilman
  1 sibling, 0 replies; 3+ messages in thread
From: Simon Horman @ 2013-12-13  2:29 UTC (permalink / raw)
  To: linux-arm-kernel

From: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>

Turn clk_enable() and clk_disable() calls into clk_prepare_enable() and
clk_disable_unprepare() to get ready for the migration to the common
clock framework.

Cc: linux-usb at vger.kernel.org
Signed-off-by: Laurent Pinchart <laurent.pinchart+renesas@ideasonboard.com>
Acked-by: Yoshihiro Shimoda <yoshihiro.shimoda.uh@renesas.com>
Acked-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Signed-off-by: Simon Horman <horms+renesas@verge.net.au>
---
 drivers/usb/host/r8a66597-hcd.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/usb/host/r8a66597-hcd.c b/drivers/usb/host/r8a66597-hcd.c
index 2ad004a..a2fdd85 100644
--- a/drivers/usb/host/r8a66597-hcd.c
+++ b/drivers/usb/host/r8a66597-hcd.c
@@ -95,7 +95,7 @@ static int r8a66597_clock_enable(struct r8a66597 *r8a66597)
 	int i = 0;
 
 	if (r8a66597->pdata->on_chip) {
-		clk_enable(r8a66597->clk);
+		clk_prepare_enable(r8a66597->clk);
 		do {
 			r8a66597_write(r8a66597, SCKE, SYSCFG0);
 			tmp = r8a66597_read(r8a66597, SYSCFG0);
@@ -139,7 +139,7 @@ static void r8a66597_clock_disable(struct r8a66597 *r8a66597)
 	udelay(1);
 
 	if (r8a66597->pdata->on_chip) {
-		clk_disable(r8a66597->clk);
+		clk_disable_unprepare(r8a66597->clk);
 	} else {
 		r8a66597_bclr(r8a66597, PLLC, SYSCFG0);
 		r8a66597_bclr(r8a66597, XCKE, SYSCFG0);
-- 
1.8.4

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

* [GIT PULL] Renesas USB r8a66597 HCD update for v3.14
  2013-12-13  2:28 [GIT PULL] Renesas USB r8a66597 HCD update for v3.14 Simon Horman
  2013-12-13  2:29 ` [PATCH] usb: r8a66597-hcd: Convert to clk_prepare/unprepare Simon Horman
@ 2013-12-20 19:26 ` Kevin Hilman
  1 sibling, 0 replies; 3+ messages in thread
From: Kevin Hilman @ 2013-12-20 19:26 UTC (permalink / raw)
  To: linux-arm-kernel

Simon Horman <horms+renesas@verge.net.au> writes:

> Hi Olof, Hi Kevin, Hi Arnd,
>
> please consider this Renesas USB r8a66597 HCD update for v3.14
>
> It has been acked by Greg Kroah-Hartman.
> I would like it to go through the arm-soc tree as it
> is a dependency for forthcoming CCF changes.

OK.

> The following changes since commit 6ce4eac1f600b34f2f7f58f9cd8f0503d79e42ae:
>
>   Linux 3.13-rc1 (2013-11-22 11:30:55 -0800)
>
> are available in the git repository at:
>
>   git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git tags/renesas-usb-r8a66597-hcd-for-v3.14
>
> for you to fetch changes up to 9b547a882e9ffec67bb41a4e66b4bcc0e91a2737:
>
>   usb: r8a66597-hcd: Convert to clk_prepare/unprepare (2013-11-28 17:19:11 +0900)
>
> ----------------------------------------------------------------
> Renesas USB r8a66597 HCD update for v3.14
>
> Convert to clk_prepare/unprepare
>
> ----------------------------------------------------------------

Pulled into next/drivers.

Thanks,

Kevin

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

end of thread, other threads:[~2013-12-20 19:26 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-13  2:28 [GIT PULL] Renesas USB r8a66597 HCD update for v3.14 Simon Horman
2013-12-13  2:29 ` [PATCH] usb: r8a66597-hcd: Convert to clk_prepare/unprepare Simon Horman
2013-12-20 19:26 ` [GIT PULL] Renesas USB r8a66597 HCD update for v3.14 Kevin Hilman

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