linux-spi.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [patch 2.6.25-git] pxa2xx_spi clock resume bugfix
@ 2008-04-29 23:08 David Brownell
       [not found] ` <200804291608.53088.david-b-yBeKhBN/0LDR7s880joybQ@public.gmane.org>
  0 siblings, 1 reply; 2+ messages in thread
From: David Brownell @ 2008-04-29 23:08 UTC (permalink / raw)
  To: Andrew Morton
  Cc: Eric BENARD, spi-devel-general-5NWGOfrQmneRv+LV9MX5uipxlwaOVQ5f,
	Stephen Street

From: Eric BENARD <ebenard-GANU6spQydw@public.gmane.org>

There is a typo in pxa2xx_spi.c, comment says "Enable the SSP clock", 
code says: clk_disable ... so after resume, the SSP is dead.

Signed-off-by: David Brownell <dbrownell-Rn4VEauK+AKRv+LV9MX5uipxlwaOVQ5f@public.gmane.org>
---
 drivers/spi/pxa2xx_spi.c |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

--- a.orig/drivers/spi/pxa2xx_spi.c	2008-04-28 21:56:43.000000000 -0700
+++ a/drivers/spi/pxa2xx_spi.c	2008-04-29 16:02:10.000000000 -0700
@@ -1567,7 +1567,7 @@ static int pxa2xx_spi_resume(struct plat
 	int status = 0;
 
 	/* Enable the SSP clock */
-	clk_disable(ssp->clk);
+	clk_enable(ssp->clk);
 
 	/* Start the queue running */
 	status = start_queue(drv_data);

-------------------------------------------------------------------------
This SF.net email is sponsored by the 2008 JavaOne(SM) Conference 
Don't miss this year's exciting event. There's still time to save $100. 
Use priority code J8TL2D2. 
http://ad.doubleclick.net/clk;198757673;13503038;p?http://java.sun.com/javaone

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

end of thread, other threads:[~2008-04-30  1:13 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2008-04-29 23:08 [patch 2.6.25-git] pxa2xx_spi clock resume bugfix David Brownell
     [not found] ` <200804291608.53088.david-b-yBeKhBN/0LDR7s880joybQ@public.gmane.org>
2008-04-30  1:13   ` Ned Forrester

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