Re: [PATCH] mmc: sdhci-bcm2835: Actually enable the clock

2015-05-29 Thread Russell King - ARM Linux
On Thu, May 28, 2015 at 05:03:12PM -0700, Eric Anholt wrote: We're currently using a fixed frequency clock specified in the DT, so enabling is a no-op. However, the RPi firmware-based clocks driver can actually disable unused clocks, so when switching to use it we ended up losing our MMC

Re: [PATCH 02/13] dmaengine: Introduce dma_request_slave_channel_compat_reason()

2015-05-29 Thread Vinod Koul
On Tue, May 26, 2015 at 04:25:57PM +0300, Peter Ujfalusi wrote: dma_request_slave_channel_compat() 'eats' up the returned error codes which prevents drivers using the compat call to be able to do deferred probing. The new wrapper is identical in functionality but it will return with error

Re: [PATCH 02/13] dmaengine: Introduce dma_request_slave_channel_compat_reason()

2015-05-29 Thread Geert Uytterhoeven
On Fri, May 29, 2015 at 11:33 AM, Vinod Koul vinod.k...@intel.com wrote: On Tue, May 26, 2015 at 04:25:57PM +0300, Peter Ujfalusi wrote: dma_request_slave_channel_compat() 'eats' up the returned error codes which prevents drivers using the compat call to be able to do deferred probing. The

Re: [PATCH 02/13] dmaengine: Introduce dma_request_slave_channel_compat_reason()

2015-05-29 Thread Vinod Koul
On Fri, May 29, 2015 at 11:42:27AM +0200, Geert Uytterhoeven wrote: On Fri, May 29, 2015 at 11:33 AM, Vinod Koul vinod.k...@intel.com wrote: On Tue, May 26, 2015 at 04:25:57PM +0300, Peter Ujfalusi wrote: dma_request_slave_channel_compat() 'eats' up the returned error codes which prevents

Re: randconfig build error with next-20150529, in drivers/mmc/host/omap_hsmmc.c

2015-05-29 Thread Tony Lindgren
* Jim Davis jim.ep...@gmail.com [150529 09:27]: Building with the attached random configuration file, warning: (USB_OTG_FSM FSL_USB2_OTG USB_MV_OTG) selects USB_OTG which has unmet direct dependencies (USB_SUPPORT USB PM) drivers/mmc/host/omap_hsmmc.c: In function

Re: powerpc/corenet: enable eSDHC

2015-05-29 Thread Scott Wood
On Wed, May 06, 2015 at 02:29:08PM +0800, Yangbo Lu wrote: Signed-off-by: Yangbo Lu yangbo...@freescale.com --- arch/powerpc/configs/corenet32_smp_defconfig | 2 ++ arch/powerpc/configs/corenet64_smp_defconfig | 2 ++ 2 files changed, 4 insertions(+) diff --git

Re: [PATCH] mmc: sdhci-bcm2835: Actually enable the clock

2015-05-29 Thread Eric Anholt
Russell King - ARM Linux li...@arm.linux.org.uk writes: On Thu, May 28, 2015 at 05:03:12PM -0700, Eric Anholt wrote: We're currently using a fixed frequency clock specified in the DT, so enabling is a no-op. However, the RPi firmware-based clocks driver can actually disable unused clocks, so

[PATCH v2 2/2] mmc: sdhci-bcm2835: Actually enable the clock

2015-05-29 Thread Eric Anholt
We're currently using a fixed frequency clock specified in the DT, so enabling is a no-op. However, the RPi firmware-based clocks driver can actually disable unused clocks, so when switching to use it we ended up losing our MMC clock once all devices were probed. Signed-off-by: Eric Anholt

[PATCH v2 1/2] mmc: sdhci-bcm2835: Clean up platform allocations if sdhci init fails.

2015-05-29 Thread Eric Anholt
Signed-off-by: Eric Anholt e...@anholt.net --- drivers/mmc/host/sdhci-bcm2835.c | 5 - 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/drivers/mmc/host/sdhci-bcm2835.c b/drivers/mmc/host/sdhci-bcm2835.c index 0ef0343..32f4046 100644 --- a/drivers/mmc/host/sdhci-bcm2835.c +++