From: Jagan Teki Date: Wed, 10 Aug 2016 15:18:14 +0000 (+0530) Subject: spi: Remove SPI_RX_FAST X-Git-Tag: v2016.11-rc1~112^2~5 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=3ac48d0e886fdbd6d7f324e9fc7c61aa02b644fa;p=u-boot spi: Remove SPI_RX_FAST Removed SPI_RX_FAST since default read for spi slaves are always 1-wire fast read. Cc: Simon Glass Cc: Bin Meng Cc: Michal Simek Cc: Siva Durga Prasad Paladugu Cc: Vignesh R Cc: Mugunthan V N Signed-off-by: Jagan Teki --- diff --git a/include/spi.h b/include/spi.h index b262e061a8..4c179838ee 100644 --- a/include/spi.h +++ b/include/spi.h @@ -27,9 +27,8 @@ #define SPI_TX_DUAL BIT(9) /* transmit with 2 wires */ #define SPI_TX_QUAD BIT(10) /* transmit with 4 wires */ #define SPI_RX_SLOW BIT(11) /* receive with 1 wire slow */ -#define SPI_RX_FAST BIT(12) /* receive with 1 wire fast */ -#define SPI_RX_DUAL BIT(13) /* receive with 2 wires */ -#define SPI_RX_QUAD BIT(14) /* receive with 4 wires */ +#define SPI_RX_DUAL BIT(12) /* receive with 2 wires */ +#define SPI_RX_QUAD BIT(13) /* receive with 4 wires */ /* SPI bus connection options - see enum spi_dual_flash */ #define SPI_CONN_DUAL_SHARED (1 << 0)