Re: [PATCH] ARM: s3c64xx: fix pm-debug compilation

2015-12-27 Thread Krzysztof Kozlowski
On 18.12.2015 23:46, Arnd Bergmann wrote: > I got one randconfig build that failed to compile plat-samsung/pm-debug.c > on s3c64xx: > > In file included from arch/arm/plat-samsung/pm-debug.c:27:0: > arch/arm/mach-s3c64xx/include/mach/pm-core.h: In function > 's3c_pm_debug_init_uart': >

Re: [PATCH] ARM: s3c: simplify s3c_irqwake_{e,}intallow definition

2015-12-27 Thread Krzysztof Kozlowski
On 18.12.2015 23:45, Arnd Bergmann wrote: > For a long time, gcc has warned about odd configurations on s3c64xx: > > In file included from arch/arm/plat-samsung/pm.c:34:0: > arch/arm/mach-s3c64xx/include/mach/pm-core.h:61:0: warning: > "s3c_irqwake_eintallow" redefined > #define

Re: [PATCH 10/10] ARM: plat-samsung: use to_platform_device()

2015-12-27 Thread Krzysztof Kozlowski
On 27.12.2015 22:17, Geliang Tang wrote: > Use to_platform_device() instead of open-coding it. > > Signed-off-by: Geliang Tang > --- > arch/arm/plat-samsung/adc.c | 6 ++ > 1 file changed, 2 insertions(+), 4 deletions(-) Thanks! Reviewed-by: Krzysztof Kozlowski

[PATCH v2 2/3] dt-bindings: regulator/mfd: Reorganize S5M8767 bindings

2015-12-27 Thread Krzysztof Kozlowski
The regulator/s5m8767-regulator.txt duplicates some of the information about bindings with old mfd/s2mps11.txt. Now common part exists entirely in mfd/samsung,sec-core.txt so: - add company prefix to file name (regulator/samsung,s5m8767.txt), - remove duplicated information, - reorganize the

[PATCH v2 3/3] dt-bindings: regulator/mfd: Reorganize S2MPA01 bindings

2015-12-27 Thread Krzysztof Kozlowski
The mfd/s2mpa01.txt duplicates some of the information about bindings with old mfd/s2mps11.txt. Now common part exists entirely in mfd/samsung,sec-core.txt so: - add company prefix to file name (regulator/samsung,s2mpa01.txt), - remove duplicated information, - reorganize the contents to match

Re: [PATCH 2/2] [media] media-device: split media initialization and registration

2015-12-27 Thread Sakari Ailus
Hi Mauro, On Tue, Dec 15, 2015 at 09:13:42AM -0200, Mauro Carvalho Chehab wrote: > Em Thu, 10 Sep 2015 20:14:04 +0300 > Sakari Ailus escreveu: > > > Hi Javier, > > > > Thanks for the set! A few comments below. > > > > Javier Martinez Canillas wrote: > > > The

[PATCH v2 0/3] dt-bindings: regulator/clock/mfd: Reorganize S2M/S5M bindings

2015-12-27 Thread Krzysztof Kozlowski
Hi, I got all acks for the patches. Please kindly pick up. Maybe Rob or Lee? The patchset tries to bring some order to the chaotic bindings for family of Samsung PMIC devices: S2MPS/S2MPA/S5M. Beside of renaming and removal of common parts I also tried to make a consistent style used in the

[PATCH v2 1/3] dt-bindings: regulator/clock/mfd: Reorganize S2MPS-family bindings

2015-12-27 Thread Krzysztof Kozlowski
Bindings for Samsung S2M and S5M family PMICs are in mess. They are spread over different files and subdirectories in a non-consistent way. The devices and respective drivers for them share a lot in common so everything could be organized in a more readable way. Reorganize the S2MPS11/13/14/15

[PATCH 10/10] ARM: plat-samsung: use to_platform_device()

2015-12-27 Thread Geliang Tang
Use to_platform_device() instead of open-coding it. Signed-off-by: Geliang Tang --- arch/arm/plat-samsung/adc.c | 6 ++ 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/arch/arm/plat-samsung/adc.c b/arch/arm/plat-samsung/adc.c index efa6e85..daf3db9 100644

[PATCH 01/10] PM / devfreq: exynos: use to_platform_device()

2015-12-27 Thread Geliang Tang
Use to_platform_device() instead of open-coding it. Signed-off-by: Geliang Tang --- drivers/devfreq/exynos/exynos4_bus.c | 3 +-- drivers/devfreq/exynos/exynos5_bus.c | 9 +++-- 2 files changed, 4 insertions(+), 8 deletions(-) diff --git