From patchwork Fri Sep 17 22:19:08 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Chris Ball X-Patchwork-Id: 189172 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 o8HMHm2N001063 for ; Fri, 17 Sep 2010 22:19:11 GMT Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1754237Ab0IQWTL (ORCPT ); Fri, 17 Sep 2010 18:19:11 -0400 Received: from void.printf.net ([89.145.121.20]:57924 "EHLO void.printf.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753946Ab0IQWTK (ORCPT ); Fri, 17 Sep 2010 18:19:10 -0400 Received: from chris by void.printf.net with local (Exim 4.69) (envelope-from ) id 1OwjGu-0005EY-14; Fri, 17 Sep 2010 23:19:08 +0100 Date: Fri, 17 Sep 2010 23:19:08 +0100 From: Chris Ball To: Peppe CAVALLARO Cc: linux-mmc@vger.kernel.org Subject: [PATCH RESEND] sdhci: add MMC_CAP_8_BIT_DATA in the Host capabilities Message-ID: <20100917221907.GB19979@void.printf.net> MIME-Version: 1.0 Content-Disposition: inline In-Reply-To: <4C7CE075.8060309@st.com> User-Agent: Mutt/1.5.18 (2008-05-17) Sender: linux-mmc-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-mmc@vger.kernel.org X-Greylist: IP, sender and recipient auto-whitelisted, not delayed by milter-greylist-4.2.3 (demeter1.kernel.org [140.211.167.41]); Fri, 17 Sep 2010 22:19:11 +0000 (UTC) diff --git a/drivers/mmc/host/sdhci.c b/drivers/mmc/host/sdhci.c index 955cad9..1c49326 100644 --- a/drivers/mmc/host/sdhci.c +++ b/drivers/mmc/host/sdhci.c @@ -1799,7 +1799,7 @@ int sdhci_add_host(struct sdhci_host *host) mmc->caps = MMC_CAP_SDIO_IRQ; if (!(host->quirks & SDHCI_QUIRK_FORCE_1_BIT_DATA)) - mmc->caps |= MMC_CAP_4_BIT_DATA; + mmc->caps |= MMC_CAP_4_BIT_DATA | MMC_CAP_8_BIT_DATA; if (caps & SDHCI_CAN_DO_HISPD) mmc->caps |= MMC_CAP_SD_HIGHSPEED;