提交 39ba928f 编写于 作者: L Leilk Liu 提交者: 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: NLeilk Liu <leilk.liu@mediatek.com>
Signed-off-by: NMark Brown <broonie@kernel.org>
上级 7abc01b3
......@@ -359,11 +359,9 @@ static void mtk_spi_setup_dma_addr(struct spi_master *master,
struct mtk_spi *mdata = spi_master_get_devdata(master);
if (mdata->tx_sgl)
writel((__force u32)cpu_to_le32(xfer->tx_dma),
mdata->base + SPI_TX_SRC_REG);
writel(xfer->tx_dma, mdata->base + SPI_TX_SRC_REG);
if (mdata->rx_sgl)
writel((__force u32)cpu_to_le32(xfer->rx_dma),
mdata->base + SPI_RX_DST_REG);
writel(xfer->rx_dma, mdata->base + SPI_RX_DST_REG);
}
static int mtk_spi_fifo_transfer(struct spi_master *master,
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册