Browse Source

spi: spi_s3c24xx driver must init completion

The s3c24xx_spi_txrx() function should initialise the completion each time
before using it, otherwise we end up with the possibility of returning success
before the interrupt handler has processed all the data.

Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Ben Dooks 17 years ago
parent
commit
4bb5eba06b
1 changed files with 3 additions and 0 deletions
  1. 3 0
      drivers/spi/spi_s3c24xx.c

+ 3 - 0
drivers/spi/spi_s3c24xx.c

@@ -192,8 +192,11 @@ static int s3c24xx_spi_txrx(struct spi_device *spi, struct spi_transfer *t)
 	hw->len = t->len;
 	hw->len = t->len;
 	hw->count = 0;
 	hw->count = 0;
 
 
+	init_completion(&hw->done);
+
 	/* send the first byte */
 	/* send the first byte */
 	writeb(hw_txbyte(hw, 0), hw->regs + S3C2410_SPTDAT);
 	writeb(hw_txbyte(hw, 0), hw->regs + S3C2410_SPTDAT);
+
 	wait_for_completion(&hw->done);
 	wait_for_completion(&hw->done);
 
 
 	return hw->count;
 	return hw->count;