Commit 3ac48d0e886fdbd6d7f324e9fc7c61aa02b644fa

Authored by Jagan Teki
Committed by Jagan Teki
1 parent 08fe9c294f

spi: Remove SPI_RX_FAST

Removed SPI_RX_FAST since default read for spi slaves
are always 1-wire fast read.

Cc: Simon Glass <sjg@chromium.org>
Cc: Bin Meng <bmeng.cn@gmail.com>
Cc: Michal Simek <michal.simek@xilinx.com>
Cc: Siva Durga Prasad Paladugu <sivadur@xilinx.com>
Cc: Vignesh R <vigneshr@ti.com>
Cc: Mugunthan V N <mugunthanvnm@ti.com>
Signed-off-by: Jagan Teki <jteki@openedev.com>

Showing 1 changed file with 2 additions and 3 deletions Side-by-side Diff

... ... @@ -27,9 +27,8 @@
27 27 #define SPI_TX_DUAL BIT(9) /* transmit with 2 wires */
28 28 #define SPI_TX_QUAD BIT(10) /* transmit with 4 wires */
29 29 #define SPI_RX_SLOW BIT(11) /* receive with 1 wire slow */
30   -#define SPI_RX_FAST BIT(12) /* receive with 1 wire fast */
31   -#define SPI_RX_DUAL BIT(13) /* receive with 2 wires */
32   -#define SPI_RX_QUAD BIT(14) /* receive with 4 wires */
  30 +#define SPI_RX_DUAL BIT(12) /* receive with 2 wires */
  31 +#define SPI_RX_QUAD BIT(13) /* receive with 4 wires */
33 32  
34 33 /* SPI bus connection options - see enum spi_dual_flash */
35 34 #define SPI_CONN_DUAL_SHARED (1 << 0)