Re: [PATCH v2 2/2] regulator: add device tree support for max8997

2012-01-12 Thread Thomas Abraham
Dear Mr. Ham, On 12 January 2012 15:19, MyungJoo Ham myungjoo@samsung.com wrote: On Thu, Jan 12, 2012 at 4:35 PM, Thomas Abraham thomas.abra...@linaro.org wrote: Add device tree based discovery support for max8997. Cc: MyungJoo Ham myungjoo@samsung.com Cc: Rajendra Nayak

[PATCH] arm: Fix missing api-change from subsys_interface change

2012-01-12 Thread Heiko Stübner
Commit 4a858cfc9a (arm: convert sysdev_class to a regular subsystem) converted the samsung sysdevs into subsys_interface instances. While the original add-function only had a (struct sys_device *) parameter, the dev_add from subsys_interface needs (struct device *, struct subsys_interface

[PATCH 0/5] S3C24XX: unclutter clock init, mostly for S3C2443

2012-01-12 Thread Heiko Stübner
This series tries to unclutter the clock init of S3C2443 and onward a bit. Most clock-information can be read via generic code and doesn't need special code for reading the raste of the h and p clock. I'm not 100% sure on the sanity of the fifth patch, which removes the plat-s3c24xx/clock.c, as

[PATCH 4/5] S3C2443/S3C2416: remove call to s3c24xx_setup_clocks

2012-01-12 Thread Heiko Stübner
As the clocks can calculate their rate themself now, there is no need to set it statically. Signed-off-by: Heiko Stuebner he...@sntech.de --- arch/arm/plat-s3c24xx/s3c2443-clock.c | 14 +++--- 1 files changed, 3 insertions(+), 11 deletions(-) diff --git

[PATCH 5/5] S3C24XX: remove plat-s3c24xx/clock.c

2012-01-12 Thread Heiko Stübner
With its users reduced, the clock.c does not need to stay around. s3c24xx_setup_clocks can move into s3c2410-clocks.c for 2410 and 244x, and its functionality also into s3c2412.c Signed-off-by: Heiko Stuebner he...@sntech.de --- arch/arm/mach-s3c2412/clock.c |1 +

Re: Build error at drivers/base/power/domain_governor.c when PM_RUNTIME is not set

2012-01-12 Thread Rafael J. Wysocki
On Thursday, January 12, 2012, Kukjin Kim wrote: Rafael J. Wysocki wrote: On Monday, January 09, 2012, Kukjin Kim wrote: Hi Rafael, This is just reporting of build error. Current mainline happens build error at drivers/base/power/domain_governor.c file like following when

RE: [PATCH] arm: Fix missing api-change from subsys_interface change

2012-01-12 Thread Kukjin Kim
Greg KH wrote: On Thu, Jan 12, 2012 at 02:30:48PM +0100, Heiko Stübner wrote: Commit 4a858cfc9a (arm: convert sysdev_class to a regular subsystem) converted the samsung sysdevs into subsys_interface instances. While the original add-function only had a (struct sys_device *) parameter,

[PATCH] watchdog: fix error in probe() of s3c2410_wdt (reset at booting)

2012-01-12 Thread MyungJoo Ham
Probe function of s3c2410 watchdog calls request_irq before initializing required value (wdt_count). This incurs resetting watchdog counter value and watchdog-reboot during booting up. This patch addresses such an issue by calling request_irq later. Error handling in probe function and calling