diff mbox

[1/1] m25p80: Fix JEDEC ID for AT26DF321

Message ID 1294130555-12762-1-git-send-email-aleksandr.koltsoff@ebts.fi
State Accepted
Commit 8fffed8cfdd511056cb17c70f525017fbb643b94
Headers show

Commit Message

Aleksandr Koltsoff Jan. 4, 2011, 8:42 a.m. UTC
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>
---
 drivers/mtd/devices/m25p80.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

Comments

Artem Bityutskiy Jan. 5, 2011, 9:10 a.m. UTC | #1
On Tue, 2011-01-04 at 10:42 +0200, Aleksandr Koltsoff wrote:
> 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>

Pushed to l2-mtd-2.6.git, thanks.
diff mbox

Patch

diff --git a/drivers/mtd/devices/m25p80.c b/drivers/mtd/devices/m25p80.c
index bf5a002..513b202 100644
--- a/drivers/mtd/devices/m25p80.c
+++ b/drivers/mtd/devices/m25p80.c
@@ -635,7 +635,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) },