From: Eric BENARD <[EMAIL PROTECTED]>

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 <[EMAIL PROTECTED]>
---
 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
_______________________________________________
spi-devel-general mailing list
[email protected]
https://lists.sourceforge.net/lists/listinfo/spi-devel-general

Reply via email to