aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ar71xx/patches-4.4/461-spi-add-type-field-to-spi_transfer.patch
blob: 6ccb632ecce098c523bb4d72efd22abd2c34028f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
--- a/include/linux/spi/spi.h
+++ b/include/linux/spi/spi.h
@@ -583,6 +583,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
  *
@@ -703,6 +709,7 @@ struct spi_transfer {
 	u8		bits_per_word;
 	u16		delay_usecs;
 	u32		speed_hz;
+	enum spi_transfer_type type;
 
 	struct list_head transfer_list;
 };