summaryrefslogtreecommitdiffstats
path: root/target/linux/ar71xx/patches-3.18/462-mtd-m25p80-set-spi-transfer-type.patch
diff options
context:
space:
mode:
authorFelix Fietkau <nbd@openwrt.org>2015-08-04 23:09:28 +0000
committerFelix Fietkau <nbd@openwrt.org>2015-08-04 23:09:28 +0000
commit991e641a7651ae45bcd607a081c606b5b9f54053 (patch)
tree9e15f8b91f7214244806d01eac74fa7d247c23ea /target/linux/ar71xx/patches-3.18/462-mtd-m25p80-set-spi-transfer-type.patch
parent9378f970ed51a78fb4ec3438cabcbaecb7c2d7fe (diff)
downloadmaster-31e0f0ae-991e641a7651ae45bcd607a081c606b5b9f54053.tar.gz
master-31e0f0ae-991e641a7651ae45bcd607a081c606b5b9f54053.tar.bz2
master-31e0f0ae-991e641a7651ae45bcd607a081c606b5b9f54053.zip
ar71xx: remove linux 3.18 support
Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 46553
Diffstat (limited to 'target/linux/ar71xx/patches-3.18/462-mtd-m25p80-set-spi-transfer-type.patch')
-rw-r--r--target/linux/ar71xx/patches-3.18/462-mtd-m25p80-set-spi-transfer-type.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/target/linux/ar71xx/patches-3.18/462-mtd-m25p80-set-spi-transfer-type.patch b/target/linux/ar71xx/patches-3.18/462-mtd-m25p80-set-spi-transfer-type.patch
deleted file mode 100644
index 3320e5b845..0000000000
--- a/target/linux/ar71xx/patches-3.18/462-mtd-m25p80-set-spi-transfer-type.patch
+++ /dev/null
@@ -1,15 +0,0 @@
---- a/drivers/mtd/devices/m25p80.c
-+++ b/drivers/mtd/devices/m25p80.c
-@@ -142,10 +142,12 @@ static int m25p80_read(struct spi_nor *n
- flash->command[0] = nor->read_opcode;
- m25p_addr2cmd(nor, from, flash->command);
-
-+ t[0].type = SPI_TRANSFER_FLASH_READ_CMD;
- t[0].tx_buf = flash->command;
- t[0].len = m25p_cmdsz(nor) + dummy;
- spi_message_add_tail(&t[0], &m);
-
-+ t[1].type = SPI_TRANSFER_FLASH_READ_DATA;
- t[1].rx_buf = buf;
- t[1].rx_nbits = m25p80_rx_nbits(nor);
- t[1].len = len;