summaryrefslogtreecommitdiffstats
path: root/target/linux/ar71xx/patches-3.14/462-mtd-m25p80-set-spi-transfer-type.patch
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2014-08-07 12:40:53 +0000
committerFelix Fietkau <nbd@openwrt.org>2014-08-07 12:40:53 +0000
commite41a0cafff16f2443e587884782172c6d8478771 (patch)
tree2ab441d85607622857c5d7602918d24312daa7ab /target/linux/ar71xx/patches-3.14/462-mtd-m25p80-set-spi-transfer-type.patch
parentf75f9606ad6af9f4c62acd45741a7e3880ad7dbb (diff)
downloadmaster-31e0f0ae-e41a0cafff16f2443e587884782172c6d8478771.tar.gz
master-31e0f0ae-e41a0cafff16f2443e587884782172c6d8478771.tar.bz2
master-31e0f0ae-e41a0cafff16f2443e587884782172c6d8478771.zip
ar71xx: add linux 3.14 support
Signed-off-by: Zhao, Gang <gang.zhao.42@gmail.com> Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 42038
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;