diff mbox

[U-Boot] sf: Correct the macros as per new array fast read command

Message ID BY2FFO11FD0210791728F2C8D98621B8DC0190@BY2FFO11FD021.protection.gbl
State Accepted
Delegated to: Jagannadha Sutradharudu Teki
Headers show

Commit Message

Siva Durga Prasad Paladugu March 11, 2015, 9:22 a.m. UTC
Correct the macros as per insertion of array fast read
command CMD_READ_ARRAY_FAST in spi_read_cmds_array in file
sf_probe.c

Signed-off-by: Siva Durga Prasad Paladugu <sivadur@xilinx.com>
---
 include/spi.h | 11 ++++++-----
 1 file changed, 6 insertions(+), 5 deletions(-)

Comments

Jagan Teki April 17, 2015, 11:51 a.m. UTC | #1
On 11 March 2015 at 14:52, Siva Durga Prasad Paladugu
<siva.durga.paladugu@xilinx.com> wrote:
> Correct the macros as per insertion of array fast read
> command CMD_READ_ARRAY_FAST in spi_read_cmds_array in file
> sf_probe.c
>
> Signed-off-by: Siva Durga Prasad Paladugu <sivadur@xilinx.com>
> ---
>  include/spi.h | 11 ++++++-----
>  1 file changed, 6 insertions(+), 5 deletions(-)
>
> diff --git a/include/spi.h b/include/spi.h
> index c58e453..7829063 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)
>

Applied to  u-boot-spi/master

thanks!
diff mbox

Patch

diff --git a/include/spi.h b/include/spi.h
index c58e453..7829063 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)