David Brownell wrote: > 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);
Quite right. The original pxa2xx_spi.c had this right, but the patch by Eric Miao, merged on 2008/1/26, introduced this error. -- Ned Forrester [EMAIL PROTECTED] Oceanographic Systems Lab 508-289-2226 Applied Ocean Physics and Engineering Dept. Woods Hole Oceanographic Institution Woods Hole, MA 02543, USA http://www.whoi.edu/sbl/liteSite.do?litesiteid=7212 http://www.whoi.edu/hpb/Site.do?id=1532 http://www.whoi.edu/page.do?pid=10079 ------------------------------------------------------------------------- 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
