|
@@ -493,7 +493,7 @@ static int a3700_spi_fifo_write(struct a3700_spi *a3700_spi)
|
|
|
u32 val;
|
|
|
|
|
|
while (!a3700_is_wfifo_full(a3700_spi) && a3700_spi->buf_len) {
|
|
|
- val = cpu_to_le32(*(u32 *)a3700_spi->tx_buf);
|
|
|
+ val = *(u32 *)a3700_spi->tx_buf;
|
|
|
spireg_write(a3700_spi, A3700_SPI_DATA_OUT_REG, val);
|
|
|
a3700_spi->buf_len -= 4;
|
|
|
a3700_spi->tx_buf += 4;
|
|
@@ -516,9 +516,8 @@ static int a3700_spi_fifo_read(struct a3700_spi *a3700_spi)
|
|
|
while (!a3700_is_rfifo_empty(a3700_spi) && a3700_spi->buf_len) {
|
|
|
val = spireg_read(a3700_spi, A3700_SPI_DATA_IN_REG);
|
|
|
if (a3700_spi->buf_len >= 4) {
|
|
|
- u32 data = le32_to_cpu(val);
|
|
|
|
|
|
- memcpy(a3700_spi->rx_buf, &data, 4);
|
|
|
+ memcpy(a3700_spi->rx_buf, &val, 4);
|
|
|
|
|
|
a3700_spi->buf_len -= 4;
|
|
|
a3700_spi->rx_buf += 4;
|