diff options
author | Ben Dooks <ben@simtec.co.uk> | 2009-06-09 02:33:56 +0400 |
---|---|---|
committer | Pierre Ossman <pierre@ossman.eu> | 2009-06-21 23:00:59 +0400 |
commit | fe9db6cbf16ed64f882999dc0bffef0c65f70c4f (patch) | |
tree | 9a11924423bede595408ad7f78cc4f021edb15e3 /drivers/mmc | |
parent | f0bf7f61b8405224bc52fc9a3ccd167a68126e00 (diff) | |
download | linux-fe9db6cbf16ed64f882999dc0bffef0c65f70c4f.tar.xz |
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@simtec.co.uk>
Signed-off-by: Pierre Ossman <pierre@ossman.eu>
Diffstat (limited to 'drivers/mmc')
-rw-r--r-- | drivers/mmc/host/s3cmci.c | 2 |
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); |