Re: [PATCH v2 16/16] mmc: host: omap_hsmmc: use "mmc_of_parse_voltage" to get ocr_avail

2015-11-11 Thread Roger Quadros
Hi, On 25/08/15 17:50, Ulf Hansson wrote: > On 3 August 2015 at 14:26, Kishon Vijay Abraham I wrote: >> From: Roger Quadros >> >> For platforms that doesn't have explicit regulator control in MMC, >> populate voltage-ranges in MMC device tree node and use >>

Re: [PATCH v2 16/16] mmc: host: omap_hsmmc: use "mmc_of_parse_voltage" to get ocr_avail

2015-11-11 Thread Ulf Hansson
On 11 November 2015 at 11:26, Roger Quadros wrote: > Hi, > > On 25/08/15 17:50, Ulf Hansson wrote: >> On 3 August 2015 at 14:26, Kishon Vijay Abraham I wrote: >>> From: Roger Quadros >>> >>> For platforms that doesn't have explicit regulator control

Re: [PATCH] mmc: change to use kmalloc

2015-11-11 Thread Alim Akhtar
Hi Yalin, On Wed, Nov 11, 2015 at 9:53 AM, yalin wang wrote: > Use kmalloc instead of kzalloc, zero the memory is not needed. > why you want to do this? what problem you faces, and how this resolves the same? > Signed-off-by: yalin wang > ---

[PATCH v4] mmc: sdhci at91: add PM support

2015-11-11 Thread Ludovic Desroches
Add runtime PM support and use runtime_force_suspend|resume() for system PM. Signed-off-by: Ludovic Desroches --- Changes: - from v3: add error handling of runtime PM - from v2: cleanup thanks to Ulf feedback - from v1: take a runtime PM centric approach

Re: [PATCH V2 06/11] mmc: sdhci-esdhc-imx: fix cd regression for dt platform

2015-11-11 Thread Fabio Estevam
Hi Robert, On Sun, Oct 25, 2015 at 7:33 PM, Robert Nelson wrote: > Thanks Fabio, that fixes the regression on v4.1.11 on my wand's... Too > bad it's also not in: > > https://lkml.org/lkml/2015/10/23/516 The fix is in 4.1.13 now. -- To unsubscribe from this list: send

Re: [PATCH V2 0/3] Add SDHCI driver for Broadcom BRCMSTB/BMIPS Soc's

2015-11-11 Thread Florian Fainelli
On 06/11/15 10:56, Al Cooper wrote: > This patchset adds the SDHCI driver for the Broadcom BRCMSTB/BMIPS > Soc's. A few new Device Tree properties, needed by this driver, > were added to sdhci-pltfm.c to set various QUIRKS. The mmc.txt > bindings document was update with the both new and existing

Re: [PATCH] mmc: change to use kmalloc

2015-11-11 Thread Peter Hurley
On 11/11/2015 12:02 PM, Alim Akhtar wrote: > Hi Yalin, > > On Wed, Nov 11, 2015 at 9:53 AM, yalin wang wrote: >> Use kmalloc instead of kzalloc, zero the memory is not needed. >> > why you want to do this? what problem you faces, and how this resolves the > same? The

Re: [PATCH] mmc: change to use kmalloc

2015-11-11 Thread Andy Shevchenko
On Wed, Nov 11, 2015 at 11:17 PM, Peter Hurley wrote: > On 11/11/2015 12:02 PM, Alim Akhtar wrote: >> Hi Yalin, >> >> On Wed, Nov 11, 2015 at 9:53 AM, yalin wang wrote: >>> Use kmalloc instead of kzalloc, zero the memory is not needed. >>> >>