summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAleksandr Koltsoff2011-01-04 09:42:35 +0100
committerDavid Woodhouse2011-01-06 16:34:02 +0100
commit8fffed8cfdd511056cb17c70f525017fbb643b94 (patch)
tree92cd0463293089a199425bf9fc5c2663d09c094b
parentmtd: txx9ndfmc: limit transfer bytes to 512 (ECC provides 6 bytes max) (diff)
downloadkernel-qcow2-linux-8fffed8cfdd511056cb17c70f525017fbb643b94.tar.gz
kernel-qcow2-linux-8fffed8cfdd511056cb17c70f525017fbb643b94.tar.xz
kernel-qcow2-linux-8fffed8cfdd511056cb17c70f525017fbb643b94.zip
mtd: m25p80: Fix JEDEC ID for AT26DF321
The last byte of the ID should be zero for this chip. Was added in commit d0e8c47c58575b9131e786edb488fd029eba443e . Reported by Tomi Varjo. Signed-off-by: Aleksandr Koltsoff <aleksandr.koltsoff@ebts.fi> Signed-off-by: David Woodhouse <David.Woodhouse@intel.com>
-rw-r--r--drivers/mtd/devices/m25p80.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mtd/devices/m25p80.c b/drivers/mtd/devices/m25p80.c
index 9c59ff6b6926..e4eba6cc1b2e 100644
--- a/drivers/mtd/devices/m25p80.c
+++ b/drivers/mtd/devices/m25p80.c
@@ -653,7 +653,7 @@ static const struct spi_device_id m25p_ids[] = {
{ "at26f004", INFO(0x1f0400, 0, 64 * 1024, 8, SECT_4K) },
{ "at26df081a", INFO(0x1f4501, 0, 64 * 1024, 16, SECT_4K) },
{ "at26df161a", INFO(0x1f4601, 0, 64 * 1024, 32, SECT_4K) },
- { "at26df321", INFO(0x1f4701, 0, 64 * 1024, 64, SECT_4K) },
+ { "at26df321", INFO(0x1f4700, 0, 64 * 1024, 64, SECT_4K) },
/* EON -- en25pxx */
{ "en25p32", INFO(0x1c2016, 0, 64 * 1024, 64, 0) },