From: Siva Durga Prasad Paladugu Date: Mon, 2 Feb 2015 09:19:59 +0000 (+0530) Subject: sf: Correct the macros as per new array fast read command X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=4473eee205e3d84b537e5f6d2d45c51911e52266;p=thirdparty%2Fu-boot.git sf: Correct the macros as per new array fast read command Correct the macros as per insertion of array fast read command Signed-off-by: Siva Durga Prasad Paladugu Signed-off-by: Michal Simek --- diff --git a/include/spi.h b/include/spi.h index 4fb755e37fd..bd8eca2825a 100644 --- a/include/spi.h +++ b/include/spi.h @@ -38,11 +38,12 @@ /* 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)