summaryrefslogtreecommitdiffstats
path: root/target/linux/ar71xx/patches-3.2/461-spi-add-type-field-to-spi_transfer.patch
diff options
context:
space:
mode:
authorGabor Juhos <juhosg@openwrt.org>2012-04-19 21:32:05 +0000
committerGabor Juhos <juhosg@openwrt.org>2012-04-19 21:32:05 +0000
commitda2cc2c79a4478ea98fd7e78ab3dfd53c2586198 (patch)
treefda8cb1863cd63826e57e2075bf40e1e1159755c /target/linux/ar71xx/patches-3.2/461-spi-add-type-field-to-spi_transfer.patch
parent9854d6fb7f6d9c6e83408816cc65645ffa09d633 (diff)
downloadmaster-31e0f0ae-da2cc2c79a4478ea98fd7e78ab3dfd53c2586198.tar.gz
master-31e0f0ae-da2cc2c79a4478ea98fd7e78ab3dfd53c2586198.tar.bz2
master-31e0f0ae-da2cc2c79a4478ea98fd7e78ab3dfd53c2586198.zip
ar71xx: nuke 3.2 support
SVN-Revision: 31360
Diffstat (limited to 'target/linux/ar71xx/patches-3.2/461-spi-add-type-field-to-spi_transfer.patch')
-rw-r--r--target/linux/ar71xx/patches-3.2/461-spi-add-type-field-to-spi_transfer.patch23
1 files changed, 0 insertions, 23 deletions
diff --git a/target/linux/ar71xx/patches-3.2/461-spi-add-type-field-to-spi_transfer.patch b/target/linux/ar71xx/patches-3.2/461-spi-add-type-field-to-spi_transfer.patch
deleted file mode 100644
index e87d7fc0f5..0000000000
--- a/target/linux/ar71xx/patches-3.2/461-spi-add-type-field-to-spi_transfer.patch
+++ /dev/null
@@ -1,23 +0,0 @@
---- a/include/linux/spi/spi.h
-+++ b/include/linux/spi/spi.h
-@@ -344,6 +344,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
- *
-@@ -446,6 +452,7 @@ struct spi_transfer {
- u8 bits_per_word;
- u16 delay_usecs;
- u32 speed_hz;
-+ enum spi_transfer_type type;
-
- struct list_head transfer_list;
- };