mmc: s3cmci: fix s3c2410_dma_config() arguments.

The s3cmci driver is calling s3c2410_dma_config with incorrect data for
the DCON register. The S3C2410_DCON_HWTRIG is implicit in the channel
configuration and the device selection of S3C2410_DCON_CH0_SDI is
incorrect as the DMA system may not select channel 0.

Signed-off-by: Ben Dooks <ben@simtec.co.uk>
Acked-by: Pierre Ossman <drzeus@drzeus.cx>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>

authored by Ben Dooks and committed by Linus Torvalds 7c48ed33 1b53dc74

+1 -2
+1 -2
drivers/mmc/host/s3cmci.c
··· 793 793 host->mem->start + host->sdidata); 794 794 795 795 if (!setup_ok) { 796 - s3c2410_dma_config(host->dma, 4, 797 - (S3C2410_DCON_HWTRIG | S3C2410_DCON_CH0_SDI)); 796 + s3c2410_dma_config(host->dma, 4, 0); 798 797 s3c2410_dma_set_buffdone_fn(host->dma, 799 798 s3cmci_dma_done_callback); 800 799 s3c2410_dma_setflags(host->dma, S3C2410_DMAF_AUTOSTART);