summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBen Dooks <ben-linux@fluff.org>2009-06-04 18:00:25 +0100
committerBen Dooks <ben-linux@fluff.org>2009-06-15 22:29:31 +0100
commitf25f0b9ca48848632f19e6616bd01550e3c0fc0e (patch)
treed854f645c5bcb20f4187a3b52d3e5eb7e8ecf936
parent03347e2592078a90df818670fddf97a33eec70fb (diff)
downloadlinux-f25f0b9ca48848632f19e6616bd01550e3c0fc0e.tar.gz
linux-f25f0b9ca48848632f19e6616bd01550e3c0fc0e.tar.bz2
linux-f25f0b9ca48848632f19e6616bd01550e3c0fc0e.zip
s3cmci: fix dma configuration call
This was missed in the DMA changes during the s3c24xx updates in commit 8970ef47d56fd3db28ee798b9d400caf08abd924. Signed-off-by: Ben Dooks <ben-linux@fluff.org>
-rw-r--r--drivers/mmc/host/s3cmci.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/host/s3cmci.c b/drivers/mmc/host/s3cmci.c
index 4eb4f37544ab..8c08cd7efa7f 100644
--- a/drivers/mmc/host/s3cmci.c
+++ b/drivers/mmc/host/s3cmci.c
@@ -794,7 +794,7 @@ static void s3cmci_dma_setup(struct s3cmci_host *host,
host->mem->start + host->sdidata);
if (!setup_ok) {
- s3c2410_dma_config(host->dma, 4, 0);
+ s3c2410_dma_config(host->dma, 4);
s3c2410_dma_set_buffdone_fn(host->dma,
s3cmci_dma_done_callback);
s3c2410_dma_setflags(host->dma, S3C2410_DMAF_AUTOSTART);