[ARM] 4117/1: S3C2412: Fix writel() usage in selection code

The S3C2412 DMA selection code has the
arguments to writel() the wrong way around.

Signed-off-by: Ben Dooks <ben-linux@fluff.org>
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
This commit is contained in:
Ben Dooks
2007-01-29 00:11:29 +01:00
committed by Russell King
parent c642846489
commit b9d1902cd2

View File

@@ -133,8 +133,8 @@ static struct s3c24xx_dma_map __initdata s3c2412_dma_mappings[] = {
static void s3c2412_dma_select(struct s3c2410_dma_chan *chan, static void s3c2412_dma_select(struct s3c2410_dma_chan *chan,
struct s3c24xx_dma_map *map) struct s3c24xx_dma_map *map)
{ {
writel(chan->regs + S3C2412_DMA_DMAREQSEL, writel(map->channels[0] | S3C2412_DMAREQSEL_HW,
map->channels[0] | S3C2412_DMAREQSEL_HW); chan->regs + S3C2412_DMA_DMAREQSEL);
} }
static struct s3c24xx_dma_selection __initdata s3c2412_dma_sel = { static struct s3c24xx_dma_selection __initdata s3c2412_dma_sel = {