mmc: tmio: fix a recently introduced bug in DMA code
authorGuennadi Liakhovetski <g.liakhovetski@gmx.de>
Thu, 14 Jul 2011 16:39:06 +0000 (18:39 +0200)
committerChris Ball <cjb@laptop.org>
Thu, 21 Jul 2011 14:35:07 +0000 (10:35 -0400)
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>
drivers/mmc/host/tmio_mmc_dma.c

index f24a029656c262ac412a1e13d1dc3ee1035f5571..7e86662717d6fffe63835dba03b2d68407610d04 100644 (file)
@@ -26,7 +26,7 @@ static void tmio_mmc_enable_dma(struct tmio_mmc_host *host, bool enable)
 {
 #if defined(CONFIG_SUPERH) || defined(CONFIG_ARCH_SHMOBILE)
        /* Switch DMA mode on or off - SuperH specific? */
-       sd_ctrl_write16(host, enable ? 2 : 0, CTL_DMA_ENABLE);
+       sd_ctrl_write16(host, CTL_DMA_ENABLE, enable ? 2 : 0);
 #endif
 }