Commit 39ba928f authored by Leilk Liu's avatar Leilk Liu Committed by Mark Brown

spi: Mediatek: fixup cpu_to_le32 incorrect usage

writel() already does a cpu_to_le32 conversion, so
remove cpu_to_le32().
Signed-off-by: default avatarLeilk Liu <leilk.liu@mediatek.com>
Signed-off-by: default avatarMark Brown <broonie@kernel.org>
parent 7abc01b3
...@@ -359,11 +359,9 @@ static void mtk_spi_setup_dma_addr(struct spi_master *master, ...@@ -359,11 +359,9 @@ static void mtk_spi_setup_dma_addr(struct spi_master *master,
struct mtk_spi *mdata = spi_master_get_devdata(master); struct mtk_spi *mdata = spi_master_get_devdata(master);
if (mdata->tx_sgl) if (mdata->tx_sgl)
writel((__force u32)cpu_to_le32(xfer->tx_dma), writel(xfer->tx_dma, mdata->base + SPI_TX_SRC_REG);
mdata->base + SPI_TX_SRC_REG);
if (mdata->rx_sgl) if (mdata->rx_sgl)
writel((__force u32)cpu_to_le32(xfer->rx_dma), writel(xfer->rx_dma, mdata->base + SPI_RX_DST_REG);
mdata->base + SPI_RX_DST_REG);
} }
static int mtk_spi_fifo_transfer(struct spi_master *master, static int mtk_spi_fifo_transfer(struct spi_master *master,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment