diff options
author | John Crispin <blogic@openwrt.org> | 2015-03-16 07:40:09 +0000 |
---|---|---|
committer | John Crispin <blogic@openwrt.org> | 2015-03-16 07:40:09 +0000 |
commit | 63894eb6f7047d8777572d663d172f64c53852bb (patch) | |
tree | 6f59aec9ab0980eca2b1e69dd23eecfb4a8071df /target/linux/ar71xx/patches-3.14/464-spi-ath79-fix-fast-flash-read.patch | |
parent | adc39a912ad66671b8a5d4b9c333f5395d637197 (diff) | |
download | upstream-63894eb6f7047d8777572d663d172f64c53852bb.tar.gz upstream-63894eb6f7047d8777572d663d172f64c53852bb.tar.bz2 upstream-63894eb6f7047d8777572d663d172f64c53852bb.zip |
ar71xx: drop 3.14 support
Signed-off-by: John Crispin <blogic@openwrt.org>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@44815 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ar71xx/patches-3.14/464-spi-ath79-fix-fast-flash-read.patch')
-rw-r--r-- | target/linux/ar71xx/patches-3.14/464-spi-ath79-fix-fast-flash-read.patch | 34 |
1 files changed, 0 insertions, 34 deletions
diff --git a/target/linux/ar71xx/patches-3.14/464-spi-ath79-fix-fast-flash-read.patch b/target/linux/ar71xx/patches-3.14/464-spi-ath79-fix-fast-flash-read.patch deleted file mode 100644 index 9c7b93ed2d..0000000000 --- a/target/linux/ar71xx/patches-3.14/464-spi-ath79-fix-fast-flash-read.patch +++ /dev/null @@ -1,34 +0,0 @@ ---- a/drivers/mtd/devices/m25p80.c -+++ b/drivers/mtd/devices/m25p80.c -@@ -530,6 +530,8 @@ static int m25p80_read(struct mtd_info * - if (dummy < 0) { - dev_err(&flash->spi->dev, "No valid read command supported\n"); - return -EINVAL; -+ } else if (dummy == 1) { -+ t[0].dummy = true; - } - - t[0].type = SPI_TRANSFER_FLASH_READ_CMD; ---- a/drivers/spi/spi-ath79.c -+++ b/drivers/spi/spi-ath79.c -@@ -262,6 +262,10 @@ static int ath79_spi_do_read_flash_cmd(s - sp->read_addr = 0; - - len = t->len - 1; -+ -+ if (t->dummy) -+ len -= 1; -+ - p = t->tx_buf; - - while (len--) { ---- a/include/linux/spi/spi.h -+++ b/include/linux/spi/spi.h -@@ -598,6 +598,7 @@ struct spi_transfer { - u16 delay_usecs; - u32 speed_hz; - enum spi_transfer_type type; -+ bool dummy; - - struct list_head transfer_list; - }; |