]> git.karo-electronics.de Git - karo-tx-linux.git/commitdiff
mtd: m25p80: Use OPCODE_QUAD_READ_4B for 4-byte addressing
authorGeert Uytterhoeven <geert+renesas@linux-m68k.org>
Wed, 15 Jan 2014 15:48:55 +0000 (16:48 +0100)
committerBrian Norris <computersforpeace@gmail.com>
Thu, 16 Jan 2014 21:02:49 +0000 (13:02 -0800)
commit 3487a63955c34ea508bcf4ca5131ddd953876e2d ("drivers: mtd: m25p80: add
quad read support") in -next added both the 3-byte OPCODE_QUAD_READ and the
4-byte OPCODE_QUAD_READ_4B, but incorrectly uses OPCODE_QUAD_READ for both
3-byte and 4-byte addressing.

Use OPCODE_QUAD_READ_4B in the 4-byte case to fix this.

Signed-off-by: Geert Uytterhoeven <geert+renesas@linux-m68k.org>
Acked-by: Marek Vasut <marex@denx.de>
Signed-off-by: Brian Norris <computersforpeace@gmail.com>
drivers/mtd/devices/m25p80.c

index 7b976e869636ffe5b920032f53df977bdedd050a..19632e330d366b7c77346548be7022a4547f692f 100644 (file)
@@ -1250,7 +1250,7 @@ static int m25p_probe(struct spi_device *spi)
                        /* Dedicated 4-byte command set */
                        switch (flash->flash_read) {
                        case M25P80_QUAD:
-                               flash->read_opcode = OPCODE_QUAD_READ;
+                               flash->read_opcode = OPCODE_QUAD_READ_4B;
                                break;
                        case M25P80_FAST:
                                flash->read_opcode = OPCODE_FAST_READ_4B;