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

Commit 61cd2203 authored by Yong Wang's avatar Yong Wang Committed by Dan Williams
Browse files

DMAENGINE: pch_dma: kill another usage of __raw_{read|write}l



Use {read|write}l instead of __raw_{read|write}l since PCH DMA
controller is PCI device.

Signed-off-by: default avatarYong Wang <yong.y.wang@intel.com>
Signed-off-by: default avatarDan Williams <dan.j.williams@intel.com>
parent b9033e68
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -133,9 +133,9 @@ struct pch_dma {
#define PCH_DMA_STS1	0x14

#define dma_readl(pd, name) \
	__raw_readl((pd)->membase + PCH_DMA_##name)
	readl((pd)->membase + PCH_DMA_##name)
#define dma_writel(pd, name, val) \
	__raw_writel((val), (pd)->membase + PCH_DMA_##name)
	writel((val), (pd)->membase + PCH_DMA_##name)

static inline struct pch_dma_desc *to_pd_desc(struct dma_async_tx_descriptor *txd)
{