diff options
author | Felix Fietkau <nbd@openwrt.org> | 2015-07-19 17:58:40 +0000 |
---|---|---|
committer | Felix Fietkau <nbd@openwrt.org> | 2015-07-19 17:58:40 +0000 |
commit | 78b1a6b773aaebdeff6f6b43df98598749e44930 (patch) | |
tree | 1cacb1c7de856ee70af780d86e6c70b9559bb247 /target/linux/ar71xx/patches-4.1/431-spi-add-various-flags.patch | |
parent | d26e8d9439052ed8f433b6ffb15a5f0c54712121 (diff) | |
download | upstream-78b1a6b773aaebdeff6f6b43df98598749e44930.tar.gz upstream-78b1a6b773aaebdeff6f6b43df98598749e44930.tar.bz2 upstream-78b1a6b773aaebdeff6f6b43df98598749e44930.zip |
ar71xx: add 4.1 support
Signed-off-by: Roman Yeryomin <roman@advem.lv>
SVN-Revision: 46426
Diffstat (limited to 'target/linux/ar71xx/patches-4.1/431-spi-add-various-flags.patch')
-rw-r--r-- | target/linux/ar71xx/patches-4.1/431-spi-add-various-flags.patch | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/target/linux/ar71xx/patches-4.1/431-spi-add-various-flags.patch b/target/linux/ar71xx/patches-4.1/431-spi-add-various-flags.patch new file mode 100644 index 0000000000..91a4ff34c5 --- /dev/null +++ b/target/linux/ar71xx/patches-4.1/431-spi-add-various-flags.patch @@ -0,0 +1,19 @@ +--- a/include/linux/spi/spi.h ++++ b/include/linux/spi/spi.h +@@ -620,6 +620,8 @@ struct spi_transfer { + unsigned cs_change:1; + unsigned tx_nbits:3; + unsigned rx_nbits:3; ++ unsigned verify:1; ++ unsigned fast_write:1; + #define SPI_NBITS_SINGLE 0x01 /* 1bit transfer */ + #define SPI_NBITS_DUAL 0x02 /* 2bits transfer */ + #define SPI_NBITS_QUAD 0x04 /* 4bits transfer */ +@@ -665,6 +667,7 @@ struct spi_message { + struct spi_device *spi; + + unsigned is_dma_mapped:1; ++ unsigned fast_read:1; + + /* REVISIT: we might want a flag affecting the behavior of the + * last transfer ... allowing things like "read 16 bit length L" |