summaryrefslogtreecommitdiffstats
path: root/drivers/mtd
diff options
context:
space:
mode:
authorWill Newton2009-03-10 20:55:53 +0100
committerLinus Torvalds2009-03-10 23:55:11 +0100
commit229cc58ba2b5a83b0b55764c6cb98695c106238a (patch)
tree16816a73113a9f6f961b569c2a09c70a5b075607 /drivers/mtd
parentidr: make idr_remove_all() do removal -before- free_layer() (diff)
downloadkernel-qcow2-linux-229cc58ba2b5a83b0b55764c6cb98695c106238a.tar.gz
kernel-qcow2-linux-229cc58ba2b5a83b0b55764c6cb98695c106238a.tar.xz
kernel-qcow2-linux-229cc58ba2b5a83b0b55764c6cb98695c106238a.zip
mtd_dataflash: fix probing of AT45DB321C chips.
Commit 771999b65f79264acde4b855e5d35696eca5e80c ("[MTD] DataFlash: bugfix, binary page sizes now handled") broke support for probing AT45DB321C flash chips. These chips do not support the "page size" status bit, so if we match the JEDEC id return early. [akpm@linux-foundation.org: coding-style fixes] Signed-off-by: Will Newton <will.newton@gmail.com> Cc: David Woodhouse <dwmw2@infradead.org> Acked-by: David Brownell <dbrownell@users.sourceforge.net> Cc: <stable@kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'drivers/mtd')
-rw-r--r--drivers/mtd/devices/mtd_dataflash.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/mtd/devices/mtd_dataflash.c b/drivers/mtd/devices/mtd_dataflash.c
index d44f741ae229..6d9f810565c8 100644
--- a/drivers/mtd/devices/mtd_dataflash.c
+++ b/drivers/mtd/devices/mtd_dataflash.c
@@ -821,7 +821,8 @@ static struct flash_info *__devinit jedec_probe(struct spi_device *spi)
if (!(info->flags & IS_POW2PS))
return info;
}
- }
+ } else
+ return info;
}
}