diff options
-rw-r--r-- | drivers/spi/spi-armada-3700.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/drivers/spi/spi-armada-3700.c b/drivers/spi/spi-armada-3700.c index fdc35dabcda2..f32b83c7209f 100644 --- a/drivers/spi/spi-armada-3700.c +++ b/drivers/spi/spi-armada-3700.c | |||
@@ -493,7 +493,7 @@ static int a3700_spi_fifo_write(struct a3700_spi *a3700_spi) | |||
493 | u32 val; | 493 | u32 val; |
494 | 494 | ||
495 | while (!a3700_is_wfifo_full(a3700_spi) && a3700_spi->buf_len) { | 495 | while (!a3700_is_wfifo_full(a3700_spi) && a3700_spi->buf_len) { |
496 | val = cpu_to_le32(*(u32 *)a3700_spi->tx_buf); | 496 | val = *(u32 *)a3700_spi->tx_buf; |
497 | spireg_write(a3700_spi, A3700_SPI_DATA_OUT_REG, val); | 497 | spireg_write(a3700_spi, A3700_SPI_DATA_OUT_REG, val); |
498 | a3700_spi->buf_len -= 4; | 498 | a3700_spi->buf_len -= 4; |
499 | a3700_spi->tx_buf += 4; | 499 | a3700_spi->tx_buf += 4; |
@@ -516,9 +516,8 @@ static int a3700_spi_fifo_read(struct a3700_spi *a3700_spi) | |||
516 | while (!a3700_is_rfifo_empty(a3700_spi) && a3700_spi->buf_len) { | 516 | while (!a3700_is_rfifo_empty(a3700_spi) && a3700_spi->buf_len) { |
517 | val = spireg_read(a3700_spi, A3700_SPI_DATA_IN_REG); | 517 | val = spireg_read(a3700_spi, A3700_SPI_DATA_IN_REG); |
518 | if (a3700_spi->buf_len >= 4) { | 518 | if (a3700_spi->buf_len >= 4) { |
519 | u32 data = le32_to_cpu(val); | ||
520 | 519 | ||
521 | memcpy(a3700_spi->rx_buf, &data, 4); | 520 | memcpy(a3700_spi->rx_buf, &val, 4); |
522 | 521 | ||
523 | a3700_spi->buf_len -= 4; | 522 | a3700_spi->buf_len -= 4; |
524 | a3700_spi->rx_buf += 4; | 523 | a3700_spi->rx_buf += 4; |