aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mmc/host/tmio_mmc_dma.c
diff options
context:
space:
mode:
authorGuennadi Liakhovetski <g.liakhovetski@gmx.de>2011-07-14 12:39:06 -0400
committerChris Ball <cjb@laptop.org>2011-07-21 10:35:07 -0400
commit332bdb506f800d177f6657247347a253dd5b5be8 (patch)
tree5ae6ff17175958e31412b8f902cfbef37929c3c0 /drivers/mmc/host/tmio_mmc_dma.c
parentc9b0cef23f8d2a16c97623d25d6e8f8e93a56e4b (diff)
mmc: tmio: fix a recently introduced bug in DMA code
A recent commit "mmc: tmio: Share register access functions" has swapped arguments of a macro and broken DMA with TMIO MMC. This patch fixes the arguments back. Signed-off-by: Guennadi Liakhovetski <g.liakhovetski@gmx.de> Signed-off-by: Chris Ball <cjb@laptop.org>
Diffstat (limited to 'drivers/mmc/host/tmio_mmc_dma.c')
-rw-r--r--drivers/mmc/host/tmio_mmc_dma.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/drivers/mmc/host/tmio_mmc_dma.c b/drivers/mmc/host/tmio_mmc_dma.c
index f24a029656c..7e86662717d 100644
--- a/drivers/mmc/host/tmio_mmc_dma.c
+++ b/drivers/mmc/host/tmio_mmc_dma.c
@@ -26,7 +26,7 @@ static void tmio_mmc_enable_dma(struct tmio_mmc_host *host, bool enable)
26{ 26{
27#if defined(CONFIG_SUPERH) || defined(CONFIG_ARCH_SHMOBILE) 27#if defined(CONFIG_SUPERH) || defined(CONFIG_ARCH_SHMOBILE)
28 /* Switch DMA mode on or off - SuperH specific? */ 28 /* Switch DMA mode on or off - SuperH specific? */
29 sd_ctrl_write16(host, enable ? 2 : 0, CTL_DMA_ENABLE); 29 sd_ctrl_write16(host, CTL_DMA_ENABLE, enable ? 2 : 0);
30#endif 30#endif
31} 31}
32 32