]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
sf: Correct the macros as per new array fast read command
authorSiva Durga Prasad Paladugu <siva.durga.paladugu@xilinx.com>
Mon, 2 Feb 2015 09:19:59 +0000 (14:49 +0530)
committerMichal Simek <michal.simek@xilinx.com>
Tue, 3 Mar 2015 11:28:29 +0000 (12:28 +0100)
Correct the macros as per insertion of array fast read
command

Signed-off-by: Siva Durga Prasad Paladugu <sivadur@xilinx.com>
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
include/spi.h

index ec17bd0bcc8963e4c4e402e57c0003d3b839b568..ae53ba54b8f20b8ab08695766a345686088ac5fc 100644 (file)
 
 /* SPI RX operation modes */
 #define SPI_OPM_RX_AS          (1 << 0)
-#define SPI_OPM_RX_DOUT        (1 << 1)
-#define SPI_OPM_RX_DIO         (1 << 2)
-#define SPI_OPM_RX_QOF         (1 << 3)
-#define SPI_OPM_RX_QIOF        (1 << 4)
-#define SPI_OPM_RX_EXTN        (SPI_OPM_RX_AS | SPI_OPM_RX_DOUT | \
+#define SPI_OPM_RX_AF          (1 << 1)
+#define SPI_OPM_RX_DOUT                (1 << 2)
+#define SPI_OPM_RX_DIO         (1 << 3)
+#define SPI_OPM_RX_QOF         (1 << 4)
+#define SPI_OPM_RX_QIOF                (1 << 5)
+#define SPI_OPM_RX_EXTN        (SPI_OPM_RX_AS | SPI_OPM_RX_AF | SPI_OPM_RX_DOUT | \
                                SPI_OPM_RX_DIO | SPI_OPM_RX_QOF | \
                                SPI_OPM_RX_QIOF)