Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+2 −4
Original line number Diff line number Diff line
@@ -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,