[<prev] [next>] [day] [month] [year] [list]
Message-ID: <20100805023843.GA30411@ywang-moblin2.bj.intel.com>
Date: Thu, 5 Aug 2010 10:38:43 +0800
From: Yong Wang <yong.y.wang@...ux.intel.com>
To: Dan Williams <dan.j.williams@...el.com>
Cc: linux-kernel@...r.kernel.org
Subject: [PATCH] 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: Yong Wang <yong.y.wang@...el.com>
---
drivers/dma/pch_dma.c | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/drivers/dma/pch_dma.c b/drivers/dma/pch_dma.c
index 37139ca..3533948 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)
{
--
1.5.5.1
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists