Re: [PATCH 1/5] ARM: tegra: config: enable dmaengine based APB DMA driver

2012-08-17 Thread Laxman Dewangan
On Thursday 16 August 2012 11:23 PM, Stephen Warren wrote: On 08/16/2012 08:13 AM, Laxman Dewangan wrote: Enable config for dmaengine based Tegra APB DMA driver and disable the legacy APB DMA driver (SYSTEM_DMA). Laxman, if I apply this series to next-20120816 (plus a few patches in my local

Re: [PATCH 1/5] ARM: tegra: config: enable dmaengine based APB DMA driver

2012-08-17 Thread Stephen Warren
On 08/17/2012 12:38 AM, Laxman Dewangan wrote: On Thursday 16 August 2012 11:23 PM, Stephen Warren wrote: On 08/16/2012 08:13 AM, Laxman Dewangan wrote: Enable config for dmaengine based Tegra APB DMA driver and disable the legacy APB DMA driver (SYSTEM_DMA). Laxman, if I apply this series to

[PATCH] spi/pl022: fix spi-pl022 pm enable at probe

2012-08-17 Thread Linus Walleij
From: Michel JAOUEN michel.jao...@stericsson.com amba drivers does not need to enable pm runtime at probe. amba_probe already enables pm runtime. This rids this warning in the ux500 boot log: ssp-pl022 ssp0: Unbalanced pm_runtime_enable! Signed-off-by: Michel JAOUEN michel.jao...@stericsson.com

[PATCH] spi: tsc2005: delete soon-obsolete e-mail address

2012-08-17 Thread Aaro Koskinen
Delete soon-obsolete e-mail address. Signed-off-by: Aaro Koskinen aaro.koski...@nokia.com --- include/linux/spi/tsc2005.h |2 -- 1 files changed, 0 insertions(+), 2 deletions(-) diff --git a/include/linux/spi/tsc2005.h b/include/linux/spi/tsc2005.h index d9b0c84..8f721e4 100644 ---

Re: [PATCH 1/5] ARM: tegra: config: enable dmaengine based APB DMA driver

2012-08-17 Thread Stephen Warren
On 08/17/2012 09:17 AM, Stephen Warren wrote: On 08/17/2012 12:38 AM, Laxman Dewangan wrote: On Thursday 16 August 2012 11:23 PM, Stephen Warren wrote: On 08/16/2012 08:13 AM, Laxman Dewangan wrote: Enable config for dmaengine based Tegra APB DMA driver and disable the legacy APB DMA driver

Re: [PATCH 1/5] ARM: tegra: config: enable dmaengine based APB DMA driver

2012-08-17 Thread Laxman Dewangan
On Friday 17 August 2012 11:04 PM, Stephen Warren wrote: On 08/17/2012 09:17 AM, Stephen Warren wrote: On 08/17/2012 12:38 AM, Laxman Dewangan wrote: On Thursday 16 August 2012 11:23 PM, Stephen Warren wrote: On 08/16/2012 08:13 AM, Laxman Dewangan wrote: Enable config for dmaengine based

Re: [PATCH 1/2] spi: spi-coldfire-qspi: Drop extra spi_master_put in device remove function

2012-08-17 Thread Mark Brown
On Thu, Aug 16, 2012 at 08:25:59PM -0700, Guenter Roeck wrote: The call sequence spi_alloc_master/spi_register_master/spi_unregister_master is complete; it reduces the device reference count to zero, which and results in device memory being freed. The subsequent call to spi_master_put is

Re: [PATCH] spi/pl022: fix spi-pl022 pm enable at probe

2012-08-17 Thread Mark Brown
On Fri, Aug 17, 2012 at 05:28:41PM +0200, Linus Walleij wrote: From: Michel JAOUEN michel.jao...@stericsson.com amba drivers does not need to enable pm runtime at probe. amba_probe already enables pm runtime. This rids this warning in the ux500 boot log: ssp-pl022 ssp0: Unbalanced

Re: [PATCH] spi: omap2-mcspi: Remove the call to platform_set_drvdata(pdev, NULL)

2012-08-17 Thread Mark Brown
On Thu, Aug 16, 2012 at 08:49:30PM +0530, Shubhrajyoti D wrote: Remove the call of platform_set_drvdata(pdev, NULL) as they are not needed anymore. Applied, thanks. These calls were never *needed* people just like to put them in.

[PATCH] spi/pl022: Fill master-dev.of_node to get spi devices registered via DT

2012-08-17 Thread Viresh Kumar
spi_register_master() calls of_register_spi_devices() to register spi devices. This routine expects master-dev.of_node to be a valid pointer. This is responsibility of master driver to fill this field, which wasn't done for pl022. Fix it to get devices added to pl022. Signed-off-by: Viresh Kumar