]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
spi: spi_bfin: bugfix for 8..16 bit word sizes
authorBryan Wu <bryan.wu@analog.com>
Wed, 5 Dec 2007 07:45:19 +0000 (23:45 -0800)
committerLinus Torvalds <torvalds@woody.linux-foundation.org>
Wed, 5 Dec 2007 17:21:20 +0000 (09:21 -0800)
Fix bug in u16_cs_chg_reader to read data_len-2 bytes data firstly, then read
out the last 2 bytes data

Signed-off-by: Bryan Wu <bryan.wu@analog.com>
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>
drivers/spi/spi_bfin5xx.c

index c4c4905e0aa1c64070a4d7a42f3fe6f4fa058c55..25b0efc5910e8fe77e8a6b22ce7abfc8bda3d0d5 100644 (file)
@@ -501,7 +501,7 @@ static void u16_cs_chg_reader(struct driver_data *drv_data)
        cs_active(drv_data, chip);
        dummy_read(drv_data);
 
-       while (drv_data->rx < drv_data->rx_end) {
+       while (drv_data->rx < drv_data->rx_end - 2) {
                cs_deactive(drv_data, chip);
 
                if (chip->cs_chg_udelay)