From: Fabio Estevam Date: Tue, 28 May 2013 18:09:42 +0000 (-0300) Subject: mmc: fsl_esdhc: Fix hang after 'save' command X-Git-Tag: v2013.07-rc2~96^2~5 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=c2137b10a491168d23d1275997eedd3f9ec4f0cf;p=oweals%2Fu-boot.git mmc: fsl_esdhc: Fix hang after 'save' command Since commit 48e0b2bd (powerpc/esdhc: Correct judgement for DATA PIO mode) we see mx6 systems to hang after doing a 'save' command. Revert this commit since the original 'ifdef' logic from 7b43db92 (drivers/mmc/fsl_esdhc.c: fix compiler warnings) was the correct one. Reported-by: Tapani Utriainen Signed-off-by: Fabio Estevam Signed-off-by: Andy Fleming --- diff --git a/drivers/mmc/fsl_esdhc.c b/drivers/mmc/fsl_esdhc.c index 861f4b9d6c..ec01795f32 100644 --- a/drivers/mmc/fsl_esdhc.c +++ b/drivers/mmc/fsl_esdhc.c @@ -178,7 +178,7 @@ static int esdhc_setup_data(struct mmc *mmc, struct mmc_data *data) int timeout; struct fsl_esdhc_cfg *cfg = (struct fsl_esdhc_cfg *)mmc->priv; struct fsl_esdhc *regs = (struct fsl_esdhc *)cfg->esdhc_base; -#ifdef CONFIG_SYS_FSL_ESDHC_USE_PIO +#ifndef CONFIG_SYS_FSL_ESDHC_USE_PIO uint wml_value; wml_value = data->blocksize/4;