From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jagan Teki Date: Mon, 28 Dec 2015 23:02:50 +0530 Subject: [U-Boot] [PATCH v2 02/10] spi: Remove SPI_OPM_RX_DIO|QIOF In-Reply-To: <1451323977-24252-1-git-send-email-jteki@openedev.com> References: <1451323977-24252-1-git-send-email-jteki@openedev.com> Message-ID: <1451323977-24252-3-git-send-email-jteki@openedev.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de SPI_OPM_RX_DIO and SPI_OPM_RX_QIOF are rx IO commands/opmodes for dual and quad. Usually IO operation's are referred to flash protocol rather with spi controller protocol, these are still present in flash side for the usage of spi-nor controllers. Cc: Simon Glass Cc: Michal Simek Cc: Siva Durga Prasad Paladugu Tested-by: Mugunthan V N Tested-by: Bin Meng Tested-by: Jagan Teki Reviewed-by: Bin Meng Signed-off-by: Jagan Teki --- include/spi.h | 2 -- 1 file changed, 2 deletions(-) diff --git a/include/spi.h b/include/spi.h index bf2ed28..3e3480a 100644 --- a/include/spi.h +++ b/include/spi.h @@ -38,9 +38,7 @@ #define SPI_OPM_RX_AS (1 << 0) #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) /* SPI bus connection options - see enum spi_dual_flash */ #define SPI_CONN_DUAL_SHARED (1 << 0) -- 1.9.1