Hi Andrei, On Mon, May 23 2011, Andrei Warkentin wrote: > This is the 6th version of the patchset. Made sure that Auto-CMD(12|23) > is called *_AUTO_CMD* instead of *_ACMD*. > > Also removed an unnecessary check for v3 spec, since one is already in place > after Arindam's patches. > > ToC: > [v6 1/5] MMC: Add/remove quirks conditional support. > [v6 2/5] MMC: Use CMD23 for multiblock transfers when we can. > [v6 3/5] MMC: Implement MMC_CAP_CMD23 for SDHCI. > [v6 4/5] MMC: Block CMD23 support for UHS104/SDXC cards. > [v6 5/5] MMC: SDHCI AutoCMD23 support. Thanks, I'll merge this for .40 with the following printk level change -- I don't think we should bother KERN_INFO with CMD23 availability: diff --git a/drivers/mmc/host/sdhci.c b/drivers/mmc/host/sdhci.c index c29e067..62d1bba 100644 --- a/drivers/mmc/host/sdhci.c +++ b/drivers/mmc/host/sdhci.c @@ -2500,9 +2500,9 @@ int sdhci_add_host(struct sdhci_host *host) ((host->flags & SDHCI_USE_ADMA) || !(host->flags & SDHCI_REQ_USE_DMA))) { host->flags |= SDHCI_AUTO_CMD23; - printk(KERN_INFO "%s: Auto-CMD23 available\n", mmc_hostname(mmc)); + DBG("%s: Auto-CMD23 available\n", mmc_hostname(mmc)); } else - printk(KERN_INFO "%s: Auto-CMD23 unavailable\n", mmc_hostname(mmc); + DBG("%s: Auto-CMD23 unavailable\n", mmc_hostname(mmc)); /* * A controller may support 8-bit width, but the board itself -- Chris Ball <cjb@xxxxxxxxxx> <http://printf.net/> One Laptop Per Child -- To unsubscribe from this list: send the line "unsubscribe linux-mmc" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html