summaryrefslogtreecommitdiff
path: root/target/linux/ar71xx/patches-3.8/461-spi-add-type-field-to-spi_transfer.patch
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2013-02-21 17:47:15 +0000
committerGabor Juhos <juhosg@openwrt.org>2013-02-21 17:47:15 +0000
commitcf2324fd6b6752ce511b612fc192ab9f0b6a32cb (patch)
tree4f94e8ab5c7b998cb84115489594f670957f3d4b /target/linux/ar71xx/patches-3.8/461-spi-add-type-field-to-spi_transfer.patch
parent9cc3a60b5a6988759532b63a6fb513484b8ec9f9 (diff)
downloadmtk-20170518-cf2324fd6b6752ce511b612fc192ab9f0b6a32cb.zip
mtk-20170518-cf2324fd6b6752ce511b612fc192ab9f0b6a32cb.tar.gz
mtk-20170518-cf2324fd6b6752ce511b612fc192ab9f0b6a32cb.tar.bz2
ar71xx: add support for 3.8
Signed-off-by: Gabor Juhos <juhosg@openwrt.org> SVN-Revision: 35728
Diffstat (limited to 'target/linux/ar71xx/patches-3.8/461-spi-add-type-field-to-spi_transfer.patch')
-rw-r--r--target/linux/ar71xx/patches-3.8/461-spi-add-type-field-to-spi_transfer.patch23
1 files changed, 23 insertions, 0 deletions
diff --git a/target/linux/ar71xx/patches-3.8/461-spi-add-type-field-to-spi_transfer.patch b/target/linux/ar71xx/patches-3.8/461-spi-add-type-field-to-spi_transfer.patch
new file mode 100644
index 0000000..d956499
--- /dev/null
+++ b/target/linux/ar71xx/patches-3.8/461-spi-add-type-field-to-spi_transfer.patch
@@ -0,0 +1,23 @@
+--- a/include/linux/spi/spi.h
++++ b/include/linux/spi/spi.h
+@@ -409,6 +409,12 @@ extern struct spi_master *spi_busnum_to_
+
+ /*---------------------------------------------------------------------------*/
+
++enum spi_transfer_type {
++ SPI_TRANSFER_GENERIC = 0,
++ SPI_TRANSFER_FLASH_READ_CMD,
++ SPI_TRANSFER_FLASH_READ_DATA,
++};
++
+ /*
+ * I/O INTERFACE between SPI controller and protocol drivers
+ *
+@@ -511,6 +517,7 @@ struct spi_transfer {
+ u8 bits_per_word;
+ u16 delay_usecs;
+ u32 speed_hz;
++ enum spi_transfer_type type;
+
+ struct list_head transfer_list;
+ };