From patchwork Tue Oct 19 12:49:01 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: =?utf-8?q?Eric_B=C3=A9nard?= X-Patchwork-Id: 265561 Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by demeter1.kernel.org (8.14.4/8.14.3) with ESMTP id o9JCtq68015059 for ; Tue, 19 Oct 2010 12:55:53 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757996Ab0JSMzw (ORCPT ); Tue, 19 Oct 2010 08:55:52 -0400 Received: from 30.mail-out.ovh.net ([213.186.62.213]:54224 "HELO 30.mail-out.ovh.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with SMTP id S1757542Ab0JSMzv (ORCPT ); Tue, 19 Oct 2010 08:55:51 -0400 X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.3 (demeter1.kernel.org [140.211.167.41]); Tue, 19 Oct 2010 12:55:53 +0000 (UTC) X-Greylist: delayed 398 seconds by postgrey-1.27 at vger.kernel.org; Tue, 19 Oct 2010 08:55:51 EDT Received: (qmail 14758 invoked by uid 503); 19 Oct 2010 12:29:14 -0000 Received: from b9.ovh.net (HELO mail632.ha.ovh.net) (213.186.33.59) by 30.mail-out.ovh.net with SMTP; 19 Oct 2010 12:29:14 -0000 Received: from b0.ovh.net (HELO queueout) (213.186.33.50) by b0.ovh.net with SMTP; 19 Oct 2010 14:49:10 +0200 Received: from pac33-2-82-240-38-71.fbx.proxad.net (HELO localhost.localdomain) (ebenard%eukrea.com@82.240.38.71) by ns0.ovh.net with SMTP; 19 Oct 2010 14:49:08 +0200 From: =?UTF-8?q?Eric=20B=C3=A9nard?= To: linux-mmc@vger.kernel.org Cc: r65037@freescale.com, w.sang@pengutronix.de, shawn.gsc@gmail.com, linux-arm-kernel@lists.infradead.org, =?UTF-8?q?Eric=20B=C3=A9nard?= Subject: [PATCH] sdhci-esdhc-imx: fix timeout on i.MX's sdhci Date: Tue, 19 Oct 2010 14:49:01 +0200 Message-Id: <1287492541-3060-1-git-send-email-eric@eukrea.com> X-Mailer: git-send-email 1.7.0.4 MIME-Version: 1.0 X-Ovh-Tracer-Id: 10647635419747167636 X-Ovh-Remote: 82.240.38.71 (pac33-2-82-240-38-71.fbx.proxad.net) X-Ovh-Local: 213.186.33.20 (ns0.ovh.net) X-Spam-Check: DONE|U 0.5/N Sender: linux-mmc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-mmc@vger.kernel.org diff --git a/drivers/mmc/host/sdhci-esdhc-imx.c b/drivers/mmc/host/sdhci-esdhc-imx.c index 2e9cca1..e8f7048 100644 --- a/drivers/mmc/host/sdhci-esdhc-imx.c +++ b/drivers/mmc/host/sdhci-esdhc-imx.c @@ -134,7 +134,8 @@ static struct sdhci_ops sdhci_esdhc_ops = { struct sdhci_pltfm_data sdhci_esdhc_imx_pdata = { .quirks = ESDHC_DEFAULT_QUIRKS | SDHCI_QUIRK_NO_MULTIBLOCK - | SDHCI_QUIRK_BROKEN_ADMA, + | SDHCI_QUIRK_BROKEN_ADMA + | SDHCI_QUIRK_BROKEN_TIMEOUT_VAL, /* ADMA has issues. Might be fixable */ /* NO_MULTIBLOCK might be MX35 only (Errata: ENGcm07207) */ .ops = &sdhci_esdhc_ops,