summaryrefslogtreecommitdiffstats
path: root/drivers/dma
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/dma')
-rw-r--r--drivers/dma/pch_dma.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/drivers/dma/pch_dma.c b/drivers/dma/pch_dma.c
index 37139ca496ec..3533948b88ba 100644
--- a/drivers/dma/pch_dma.c
+++ b/drivers/dma/pch_dma.c
@@ -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)
{