diff options
author | Ben Dooks <ben@simtec.co.uk> | 2009-06-08 18:33:56 -0400 |
---|---|---|
committer | Pierre Ossman <pierre@ossman.eu> | 2009-06-21 15:00:59 -0400 |
commit | fe9db6cbf16ed64f882999dc0bffef0c65f70c4f (patch) | |
tree | 9a11924423bede595408ad7f78cc4f021edb15e3 /drivers/mmc/host/s3cmci.c | |
parent | f0bf7f61b8405224bc52fc9a3ccd167a68126e00 (diff) |
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/host/s3cmci.c')
-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, | |||
794 | host->mem->start + host->sdidata); | 794 | host->mem->start + host->sdidata); |
795 | 795 | ||
796 | if (!setup_ok) { | 796 | if (!setup_ok) { |
797 | s3c2410_dma_config(host->dma, 4, 0); | 797 | s3c2410_dma_config(host->dma, 4); |
798 | s3c2410_dma_set_buffdone_fn(host->dma, | 798 | s3c2410_dma_set_buffdone_fn(host->dma, |
799 | s3cmci_dma_done_callback); | 799 | s3cmci_dma_done_callback); |
800 | s3c2410_dma_setflags(host->dma, S3C2410_DMAF_AUTOSTART); | 800 | s3c2410_dma_setflags(host->dma, S3C2410_DMAF_AUTOSTART); |