aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ar71xx/patches-3.14/462-mtd-m25p80-set-spi-transfer-type.patch
diff options
context:
space:
mode:
Diffstat (limited to 'target/linux/ar71xx/patches-3.14/462-mtd-m25p80-set-spi-transfer-type.patch')
-rw-r--r--target/linux/ar71xx/patches-3.14/462-mtd-m25p80-set-spi-transfer-type.patch18
1 files changed, 18 insertions, 0 deletions
diff --git a/target/linux/ar71xx/patches-3.14/462-mtd-m25p80-set-spi-transfer-type.patch b/target/linux/ar71xx/patches-3.14/462-mtd-m25p80-set-spi-transfer-type.patch
new file mode 100644
index 0000000000..39ca0130b5
--- /dev/null
+++ b/target/linux/ar71xx/patches-3.14/462-mtd-m25p80-set-spi-transfer-type.patch
@@ -0,0 +1,18 @@
+--- a/drivers/mtd/devices/m25p80.c
++++ b/drivers/mtd/devices/m25p80.c
+@@ -532,6 +532,7 @@ static int m25p80_read(struct mtd_info *
+ return -EINVAL;
+ }
+
++ t[0].type = SPI_TRANSFER_FLASH_READ_CMD;
+ t[0].tx_buf = flash->command;
+ t[0].len = m25p_cmdsz(flash) + dummy;
+ spi_message_add_tail(&t[0], &m);
+@@ -561,6 +562,7 @@ static int m25p80_read(struct mtd_info *
+ else
+ readlen = len;
+
++ t[1].type = SPI_TRANSFER_FLASH_READ_DATA;
+ t[1].rx_buf = buf + ofs;
+ t[1].rx_nbits = m25p80_rx_nbits(flash);
+ t[1].len = readlen;