Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752488AbZGYTor (ORCPT ); Sat, 25 Jul 2009 15:44:47 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752406AbZGYToq (ORCPT ); Sat, 25 Jul 2009 15:44:46 -0400 Received: from smtp.nokia.com ([192.100.105.134]:16770 "EHLO mgw-mx09.nokia.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752289AbZGYTop (ORCPT ); Sat, 25 Jul 2009 15:44:45 -0400 Message-ID: <4A6B60C3.3070609@nokia.com> Date: Sat, 25 Jul 2009 22:45:07 +0300 From: Adrian Hunter User-Agent: Thunderbird 2.0.0.21 (X11/20090318) MIME-Version: 1.0 To: Matt Fleming CC: Pierre Ossman , "Lavinen Jarkko (Nokia-D/Helsinki)" , "Karpov Denis.2 (EXT-Teleca/Helsinki)" , linux-omap Mailing List , lkml , Andrew Morton Subject: Re: [PATCH 7/32] mmc: add host capabilities for SD only and MMC only References: <20090710124004.1262.10422.sendpatchset@ahunter-tower> <20090710124054.1262.18902.sendpatchset@ahunter-tower> <20090725155336.GA12665@console-pimps.org> <4A6B300A.10706@nokia.com> <20090725184030.GB12665@console-pimps.org> In-Reply-To: <20090725184030.GB12665@console-pimps.org> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 25 Jul 2009 19:44:33.0630 (UTC) FILETIME=[558547E0:01CA0D60] X-Nokia-AV: Clean Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1435 Lines: 34 Matt Fleming wrote: > On Sat, Jul 25, 2009 at 07:17:14PM +0300, Adrian Hunter wrote: >> Matt Fleming wrote: >>> And by saying what capabilities a host supports, when we add new >>> capabilities we don't have to modify existing code to say that it >>> doesn't support the new capability. >> If the capabilities are the other way around, then all existing drivers >> must be changed. On the other hand, the if statement can easily be >> improved: >> >> #define mmc_cap_mmc(host) (!((host)->caps & MMC_CAP_NOT_MMC)) >> #define mmc_cap_sd(host) (!((host)->caps & MMC_CAP_NOT_SD)) >> #define mmc_cap_sdio(host) (!((host)->caps & MMC_CAP_NOT_SDIO)) >> >> - mmc_send_if_cond(host, host->ocr_avail); >> + if (mmc_cap_sdio(host) || mmc_cap_sd(host)) >> + mmc_send_if_cond(host, host->ocr_avail); >> + > > OK, that's a fair point, all drivers would need to be changed. However, > I'm not adverse to making a one-time change to all drivers in the name > of sanity. Enumerating what cards a controller doesn't support just > doesn't sound correct to me. > > It wouldn't be a complicated change either, I'd even be happy to write > the patch ;-) I have no objections if you write such a patch :-) -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/