diff options
author | Jagan Teki <jteki@openedev.com> | 2015-12-03 22:25:20 +0530 |
---|---|---|
committer | Jagan Teki <jteki@openedev.com> | 2015-12-11 22:12:23 +0530 |
commit | cd337da21ecea0f34335d3b2d33bcd28d9e3d0d0 (patch) | |
tree | e37d44b14d4173d8090b1d63c607e8c084db4321 /drivers/spi | |
parent | 379b49d82ee3304b55ece1f32d95fbeef9e0176a (diff) | |
download | u-boot-imx-cd337da21ecea0f34335d3b2d33bcd28d9e3d0d0.zip u-boot-imx-cd337da21ecea0f34335d3b2d33bcd28d9e3d0d0.tar.gz u-boot-imx-cd337da21ecea0f34335d3b2d33bcd28d9e3d0d0.tar.bz2 |
spi: ti_qspi: Fix SPI_3WIRE checking using mode
SPI_3WIRE is spi mode not spi flags, so this patch fixed
the spi-3wire checking throgh mode instead of flags.
Cc: Mugunthan V N <mugunthanvnm@ti.com>
Acked-by: Simon Glass <sjg@chromium.org>
Signed-off-by: Jagan Teki <jteki@openedev.com>
Diffstat (limited to 'drivers/spi')
-rw-r--r-- | drivers/spi/ti_qspi.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/spi/ti_qspi.c b/drivers/spi/ti_qspi.c index 646dd89..5747ed1 100644 --- a/drivers/spi/ti_qspi.c +++ b/drivers/spi/ti_qspi.c @@ -293,7 +293,7 @@ int spi_xfer(struct spi_slave *slave, unsigned int bitlen, const void *dout, qslave->cmd = 0; qslave->cmd |= QSPI_WLEN(8); qslave->cmd |= QSPI_EN_CS(slave->cs); - if (flags & SPI_3WIRE) + if (qslave->mode & SPI_3WIRE) qslave->cmd |= QSPI_3_PIN; qslave->cmd |= 0xfff; |