diff options
author | David Brownell <david-b@pacbell.net> | 2006-01-08 16:34:29 -0500 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@suse.de> | 2006-01-13 19:29:56 -0500 |
commit | 7111763d391b0c5a949a4f2575aa88cd585f0ff6 (patch) | |
tree | 376eef5003b71c6445c02bbe87950b2e365e0758 /drivers/mtd/devices/m25p80.c | |
parent | 8275c642ccdce09a2146d0a9eb022e3698ee927e (diff) |
[PATCH] spi: misc fixes
This collects some small SPI patches that seem to be missing from the MM tree:
- spi_butterfly kbuild hooks got dropped somehow; this restores them
- quick fix for a (theoretical?) m25p80_write() oops noted by Andrew
- quick fix for a potential config-specific oops for mtd_dataflash()
- minor doc tweaks
Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
Diffstat (limited to 'drivers/mtd/devices/m25p80.c')
-rw-r--r-- | drivers/mtd/devices/m25p80.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/drivers/mtd/devices/m25p80.c b/drivers/mtd/devices/m25p80.c index 45108ed85588..d5f24089be71 100644 --- a/drivers/mtd/devices/m25p80.c +++ b/drivers/mtd/devices/m25p80.c | |||
@@ -378,7 +378,9 @@ static int m25p80_write(struct mtd_info *mtd, loff_t to, size_t len, | |||
378 | 378 | ||
379 | spi_sync(flash->spi, &m); | 379 | spi_sync(flash->spi, &m); |
380 | 380 | ||
381 | *retlen += m.actual_length - sizeof(flash->command); | 381 | if (retlen) |
382 | *retlen += m.actual_length | ||
383 | - sizeof(flash->command); | ||
382 | } | 384 | } |
383 | } | 385 | } |
384 | 386 | ||