From: David Brownell Date: Sat, 30 Dec 2006 00:48:47 +0000 (-0800) Subject: [PATCH] SPI/MTD: mtd_dataflash oops prevention X-Git-Tag: v2.6.20-rc3~29 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=de4fa99266b2e1f6771644b9b50f33fe8f82d728;p=profile%2Fivi%2Fkernel-x86-ivi.git [PATCH] SPI/MTD: mtd_dataflash oops prevention Return a fault code if the Dataflash driver runs into a "no device present" error when the MISO line has a pulldown (it currently expects a pullup), so that rmmod won't oops. Signed-off-by: David Brownell Cc: David Woodhouse Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/drivers/mtd/devices/mtd_dataflash.c b/drivers/mtd/devices/mtd_dataflash.c index 0a7e868..910e406 100644 --- a/drivers/mtd/devices/mtd_dataflash.c +++ b/drivers/mtd/devices/mtd_dataflash.c @@ -536,7 +536,7 @@ static int __devinit dataflash_probe(struct spi_device *spi) if (status <= 0 || status == 0xff) { DEBUG(MTD_DEBUG_LEVEL1, "%s: status error %d\n", spi->dev.bus_id, status); - if (status == 0xff) + if (status == 0 || status == 0xff) status = -ENODEV; return status; }