mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-11-24 15:50:59 +07:00
spi: Mediatek: fixup cpu_to_le32 incorrect usage
writel() already does a cpu_to_le32 conversion, so remove cpu_to_le32(). Signed-off-by: Leilk Liu <leilk.liu@mediatek.com> Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
7abc01b346
commit
39ba928f8b
@ -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,
|
||||
|
Loading…
Reference in New Issue
Block a user