Re: [PATCH v2] gpio: samsung: add devicetree init for s3c24xx arches

2012-08-31 Thread Linus Walleij
On Wed, Aug 29, 2012 at 1:09 AM, Kukjin Kim wrote: > On 08/28/12 14:55, Heiko Stübner wrote: >> >> Until now the Exynos-SoC was the only Samsung-SoC supporting the GPIOs >> via the device tree. This patch implements dt-support for the >> s3c24xx arches. >> >> The controllers contain only 3 cells,

Re: [PATCH 0/3] ARM: EXYNOS: Add support for GPIO on Exynos4x12

2012-08-31 Thread Linus Walleij
On Tue, Aug 28, 2012 at 4:58 PM, Thomas Abraham wrote: > On 28 August 2012 15:31, Tomasz Figa wrote: >> This patch series makes necessary preparations and adds support for GPIO on >> Exynos4x12 SoCs. > > Hopefully, we can get device tree support merged for Exynos4412 soon > and then switch over

Re: [PATCH 1/2] ARM: exynos: delete redundant HAVE_SCHED_CLOCK option in Kconfig

2012-08-31 Thread Kyungmin Park
Acked-by: Kyungmin Park # git grep HAVE_SCHED_CLOCK arch/arm/ arch/arm/Kconfig: select HAVE_SCHED_CLOCK arch/arm/mach-exynos/Kconfig: select HAVE_SCHED_CLOCK On 8/31/12, Barry Song <21cn...@gmail.com> wrote: > 2012/8/31 Kyungmin Park : >> Hi, >> >> then where select it HAVE_SCHED_CLOCK?

[PATCH 1/2] ARM: exynos: delete redundant HAVE_SCHED_CLOCK option in Kconfig

2012-08-31 Thread Barry Song
From: Barry Song Signed-off-by: Barry Song --- arch/arm/mach-exynos/Kconfig |1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/arch/arm/mach-exynos/Kconfig b/arch/arm/mach-exynos/Kconfig index b5b4c8c..3fd4ab3 100644 --- a/arch/arm/mach-exynos/Kconfig +++ b/arch/arm/mach-e

[PATCH 2/2] ARM: timer_sp804: delete redundant HAVE_SCHED_CLOCK option in Kconfig

2012-08-31 Thread Barry Song
From: Barry Song Signed-off-by: Barry Song --- arch/arm/Kconfig |1 - 1 files changed, 0 insertions(+), 1 deletions(-) diff --git a/arch/arm/Kconfig b/arch/arm/Kconfig index 2c1ca9f..00ef0e0 100644 --- a/arch/arm/Kconfig +++ b/arch/arm/Kconfig @@ -1157,7 +1157,6 @@ config PLAT_VERSATILE c

Re: [PATCH 1/2] ARM: exynos: delete redundant HAVE_SCHED_CLOCK option in Kconfig

2012-08-31 Thread Barry Song
2012/8/31 Kyungmin Park : > Hi, > > then where select it HAVE_SCHED_CLOCK? apart from other exynos board, > universal have to use another clock. The old arch/arm/kernel/Makefile: obj-$(CONFIG_HAVE_SCHED_CLOCK) += sched_clock.o has become: obj-y += sched_clock.o > > Thank you, > Kyungmin Park > >

Re: [PATCH 1/2] ARM: exynos: delete redundant HAVE_SCHED_CLOCK option in Kconfig

2012-08-31 Thread Kyungmin Park
Hi, then where select it HAVE_SCHED_CLOCK? apart from other exynos board, universal have to use another clock. Thank you, Kyungmin Park On 8/31/12, Barry Song wrote: > From: Barry Song > > Signed-off-by: Barry Song > --- > arch/arm/mach-exynos/Kconfig |1 - > 1 files changed, 0 insertion

Re: [PATCH v5 4/9] mmc: dw_mmc: lookup for optional biu and ciu clocks

2012-08-31 Thread Thomas Abraham
On 31 August 2012 13:29, Jaehoon Chung wrote: >> + >> + host->ciu_clk = clk_get(host->dev, "ciu"); >> + if (IS_ERR(host->ciu_clk)) >> + dev_dbg(host->dev, "ciu clock not available\n"); >> + else >> + clk_prepare_enable(host->ciu_clk); >>>

Re: [PATCH v5 4/9] mmc: dw_mmc: lookup for optional biu and ciu clocks

2012-08-31 Thread Jaehoon Chung
> + > + host->ciu_clk = clk_get(host->dev, "ciu"); > + if (IS_ERR(host->ciu_clk)) > + dev_dbg(host->dev, "ciu clock not available\n"); > + else > + clk_prepare_enable(host->ciu_clk); > + > + if (IS_ERR(host->ciu_clk)) > +

Re: [PATCH 1/2] ARM: dts: Use active low flag for gpio-keys on Origen

2012-08-31 Thread Thomas Abraham
On 31 August 2012 09:43, Sachin Kamat wrote: > Commit: f447ed8b31d (gpio: samsung: add flags specifier to > device-tree binding) adds a flag to represent active low state > for gpio line. Since gpio-keys on Origen board are active low, > using this flag to represent the same. > > Cc: Olof Johansso