summaryrefslogtreecommitdiff
path: root/include/spi.h
diff options
context:
space:
mode:
authorJagan Teki <jteki@openedev.com>2016-08-10 15:18:14 (GMT)
committerJagan Teki <jagannadh.teki@gmail.com>2016-09-21 19:32:28 (GMT)
commit3ac48d0e886fdbd6d7f324e9fc7c61aa02b644fa (patch)
treebfef6518f161276a8cdf9aa408f090b88f7759b8 /include/spi.h
parent08fe9c294f2d699a4e8b6b18e31169a89552f967 (diff)
downloadu-boot-3ac48d0e886fdbd6d7f324e9fc7c61aa02b644fa.tar.xz
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>
Diffstat (limited to 'include/spi.h')
-rw-r--r--include/spi.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/include/spi.h b/include/spi.h
index b262e06..4c17983 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)