Re: [PATCH 5/6] thermal:exynos4: Enable support for Exynos4412 SoCs

2013-04-21 Thread Sachin Kamat
On 22 April 2013 11:55, amit kachhap wrote: > Hi, > > I have one suggestion, > > On Fri, Apr 19, 2013 at 10:08 PM, Lukasz Majewski > wrote: >> Enable TMU support for Exynos4412 based target with device tree. >> >> Signed-off-by: Lukasz Majewski >> Signed-off-by: Kyungmin Park >> --- >> drivers

Re: [PATCH v3 1/6] drivers: phy: add generic PHY framework

2013-04-21 Thread Kishon Vijay Abraham I
Hi, On Friday 19 April 2013 02:39 PM, Grant Likely wrote: On Tue, 16 Apr 2013 15:48:07 +0530, Kishon Vijay Abraham I wrote: On Tuesday 16 April 2013 01:20 AM, Grant Likely wrote: On Mon, 15 Apr 2013 17:56:10 +0530, Kishon Vijay Abraham I wrote: On Monday 15 April 2013 05:04 PM, Grant Like

Re: [PATCH 6/6] thermal:exynos4: Add documentation for Exynos SoC thermal bindings

2013-04-21 Thread Sachin Kamat
Hi Lukasz, Thanks for adding this. Some comments inline. On 19 April 2013 22:08, Lukasz Majewski wrote: > Proper description for Exynos4 bindings added to Documentation/devicetree/ > bindings > > Signed-off-by: Lukasz Majewski > Signed-off-by: Kyungmin Park > --- > .../devicetree/bindings/the

[PATCH 4/4] ARM: dts: Enable TMU on SMDK4412 board

2013-04-21 Thread Sachin Kamat
Enables TMU on SMDK4412 board. Signed-off-by: Sachin Kamat --- Dependent on: http://www.mail-archive.com/linux-samsung-soc@vger.kernel.org/msg17630.html --- arch/arm/boot/dts/exynos4412-smdk4412.dts |4 1 file changed, 4 insertions(+) diff --git a/arch/arm/boot/dts/exynos4412-smdk4412.

[PATCH 3/4] ARM: dts: Enable TMU on Origen4412 board

2013-04-21 Thread Sachin Kamat
Enables TMU on Origen4412 board. Signed-off-by: Sachin Kamat --- Dependent on: http://www.mail-archive.com/linux-samsung-soc@vger.kernel.org/msg17630.html --- arch/arm/boot/dts/exynos4412-origen.dts |4 1 file changed, 4 insertions(+) diff --git a/arch/arm/boot/dts/exynos4412-origen.dt

[PATCH 2/4] ARM: dts: Enable TMU on Origen4210 board

2013-04-21 Thread Sachin Kamat
Enables TMU on Origen4210 board. Signed-off-by: Sachin Kamat --- arch/arm/boot/dts/exynos4210-origen.dts |4 1 file changed, 4 insertions(+) diff --git a/arch/arm/boot/dts/exynos4210-origen.dts b/arch/arm/boot/dts/exynos4210-origen.dts index 524b908..8b0a781 100644 --- a/arch/arm/boot

[PATCH 1/4] ARM: dts: Add TMU clock entries to exynos4210.dtsi

2013-04-21 Thread Sachin Kamat
Adds TMU clock entries to exynos4210.dtsi file. Signed-off-by: Sachin Kamat --- arch/arm/boot/dts/exynos4210.dtsi |3 +++ 1 file changed, 3 insertions(+) diff --git a/arch/arm/boot/dts/exynos4210.dtsi b/arch/arm/boot/dts/exynos4210.dtsi index 50ab9d4..53654c4 100644 --- a/arch/arm/boot/dts

Re: [PATCH 3/6] thermal:exynos4: TMU device tree support for Exynos4412 targets

2013-04-21 Thread Sachin Kamat
Hi Lukasz, On 19 April 2013 22:08, Lukasz Majewski wrote: > Device tree support for TMU at Exynos4x12 targets. > > Signed-off-by: Lukasz Majewski > Signed-off-by: Kyungmin Park nit: Subject for these kind of patches should start with "ARM: dts: ..." Otherwise looks good to me. > --- > arch/a

[PATCH 5/5] of: remove CONFIG_OF_DEVICE

2013-04-21 Thread Rob Herring
From: Rob Herring CONFIG_OF_DEVICE is always selected when CONFIG_OF is enabled, so remove it and simplify of_platform.h and of_device.h headers. This also fixes !OF compiles using of_platform_populate. Signed-off-by: Rob Herring Cc: Grant Likely --- drivers/of/Kconfig |3 --- dr

[PATCH 4/5] usb: chipidea: depend on CONFIG_OF instead of CONFIG_OF_DEVICE

2013-04-21 Thread Rob Herring
From: Rob Herring CONFIG_OF_DEVICE is going away, so use CONFIG_OF instead. It does not appear that CONFIG_OF_DEVICE was the correct dependency either. Signed-off-by: Rob Herring Cc: Alexander Shishkin Cc: Greg Kroah-Hartman Cc: Grant Likely Cc: linux-...@vger.kernel.org --- drivers/usb/chi

[PATCH 1/5] ibmebus: convert of_platform_driver to platform_driver

2013-04-21 Thread Rob Herring
From: Rob Herring ibmebus is the last remaining user of of_platform_driver and the conversion to a regular platform driver is trivial. Signed-off-by: Rob Herring Cc: Benjamin Herrenschmidt Cc: Paul Mackerras Cc: Hoang-Nam Nguyen Cc: Christoph Raisch Cc: Roland Dreier Cc: Sean Hefty Cc: Ha

[PATCH 2/5] driver core: move to_platform_driver to platform_device.h

2013-04-21 Thread Rob Herring
From: Rob Herring In converting the last remaining of_platform_driver (ibmebus) to a regular platform driver, to_platform_driver is needed to replace to_of_platform_driver. Signed-off-by: Rob Herring Cc: Greg Kroah-Hartman Cc: Grant Likely --- drivers/base/platform.c |3 --- incl

[PATCH 3/5] of: remove of_platform_driver

2013-04-21 Thread Rob Herring
From: Rob Herring The last user of of_platform_driver is converted to a regular platform_driver, so of_platform_driver can be removed now. Signed-off-by: Rob Herring Cc: Grant Likely --- include/linux/of_platform.h | 21 - 1 file changed, 21 deletions(-) diff --git a/in

[PATCH 0/5] of_platform_driver and OF_DEVICE removal

2013-04-21 Thread Rob Herring
From: Rob Herring This series is a relatively straight-forward removal of the last remaining user of of_platform_driver (ibmebus) and removal of CONFIG_OF_DEVICE which is always enabled when CONFIG_OF is enabled. Compile tested on powerpc and sparc. Rob Rob Herring (5): ibmebus: convert of_p

Re: [PATCH 04/10] util_version: new helper for displaying version info

2013-04-21 Thread Mike Frysinger
On Sunday 21 April 2013 15:26:03 Jon Loeliger wrote: > > On Mon, Apr 15, 2013 at 10:13:11PM -0400, Mike Frysinger wrote: > > > This is so all utilities can have this flag and not just dtc. > > > > > >=20 > > > > > > Acked-by: David Gibson > > > Signed-off-by: Mike Frysinger > > > > Jon, > > > >

Re: [PATCH 26/28] proc: Supply a function to remove a proc entry by PDE [RFC]

2013-04-21 Thread Rafael J. Wysocki
On Tuesday, April 16, 2013 07:27:34 PM David Howells wrote: > Supply a function (proc_remove()) to remove a proc entry (and any subtree > rooted there) by proc_dir_entry pointer rather than by name and (optionally) > root dir entry pointer. This allows us to eliminate all remaining pde->name > acc

Re: [PATCH 04/10] util_version: new helper for displaying version info

2013-04-21 Thread Jon Loeliger
> > On Mon, Apr 15, 2013 at 10:13:11PM -0400, Mike Frysinger wrote: > > This is so all utilities can have this flag and not just dtc. > >=20 > > Acked-by: David Gibson > > Signed-off-by: Mike Frysinger > > Jon, > > Please apply these first 4 patches, regardless of the rest of the > series. Do

Re: [PATCH] of: export of_get_next_parent

2013-04-21 Thread Sylwester Nawrocki
Hi, On 04/21/2013 02:11 PM, Ming Lei wrote: On Wed, Apr 10, 2013 at 5:47 PM, Ming Lei wrote: The function is called by at least three drivers now: pinctrl mfd/vexpress v4l2-core The 3rd one can be built as module, so export the function to avoid build failure. Cc:

[PATCH v6 2/2] DMA: imx-dma: imxdma->dev used uninitialized

2013-04-21 Thread Markus Pargmann
imxdma->dev is used for dev_warn before it was set. Signed-off-by: Markus Pargmann Reviewed-by: Shawn Guo --- drivers/dma/imx-dma.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/dma/imx-dma.c b/drivers/dma/imx-dma.c index b74b249..b9aa549 100644 --- a/drivers/dma/i

[PATCH v6 1/2] dma: imx-dma: Add oftree support

2013-04-21 Thread Markus Pargmann
Adding devicetree support for imx-dma driver. Use driver name for function 'imx_dma_is_general_purpose' because the devicename for devicetree initialized devices is different. Signed-off-by: Markus Pargmann Reviewed-by: Arnd Bergmann Reviewed-by: Shawn Guo --- Notes: Changes in V6: - S

[PATCH v6 0/2] dma: imx-dma: OFTree support

2013-04-21 Thread Markus Pargmann
Hi, this series adds support for the generic DMA DT bindings for imx-dma. @Arnd and Shawn: I added your Reviewed-by tags again. Please let me know if they do not include the last style fixes on the xlate function. Thanks, Markus Markus Pargmann (2): dma: imx-dma: Add oftree support

Re: [PATCH RESEND v5 0/2] dma: imx-dma: OFTree support

2013-04-21 Thread Markus Pargmann
On Thu, Apr 18, 2013 at 10:44:29PM +0800, Shawn Guo wrote: > On Thu, Apr 18, 2013 at 03:21:36PM +0200, Markus Pargmann wrote: > > Markus Pargmann (2): > > dma: imx-dma: Add oftree support > > DMA: imx-dma: imxdma->dev used uninitialized > > Both, > > Reviewed-by: Shawn Guo > Thanks

Re: [PATCH v4 2/2] video: imxfb: Add DT support

2013-04-21 Thread Markus Pargmann
On Thu, Apr 18, 2013 at 06:06:14PM +0200, Jean-Christophe PLAGNIOL-VILLARD wrote: > On 15:03 Thu 18 Apr , Markus Pargmann wrote: > > Add devicetree support for imx framebuffer driver. It uses the generic > > display bindings and helper functions. > > > > Signed-off-by: Markus Pargmann > > Cc

Re: [PATCH v7 3/3] of/pci: mips: convert to common of_pci_range_parser

2013-04-21 Thread Gabor Juhos
Hi Jason, >> Sorry I had no time earlier, but I have tested this now on MIPS. The patch >> causes build errors unfortunately. Given the fact that this has been merged >> already, I will send a fixup patch. > > Olof has dropped this branch from arm-soc, plase post the build error > and fix here so