RE: [PATCH v3 0/7] Add max77802 support for Peach boards

2014-09-12 Thread kgene
Javier Martinez Canillas wrote: > > Hello Kukjin, > Hi Javier, > This is a third version of th series that adds max77802 support for > the Peach Pit and Pi boards. The series also have all the pending > patches that were posted but depended on this support. I've picked > all the patches I found

RE: [PATCH v2 0/5] Add max77802 support for Peach boards

2014-09-08 Thread kgene
Javier Martinez Canillas wrote: > > Hello Kukjin, > Hi, > On Wed, Aug 20, 2014 at 1:19 PM, Javier Martinez Canillas > wrote: > > > > This is a second version of the series that adds max77802 support for > > the Peach Pit and Pi boards. The series also have all the pending > > patches that were

RE: [PATCH v5 RESEND 1/3] ARM: EXYNOS: Move code from hotplug.c to platsmp.c

2014-09-08 Thread kgene
Krzysztof Kozlowski wrote: > > Cleanup a little the SMP/hotplug code for Exynos by: > 1. Moving completely all functions from hotplug.c into the platsmp.c; > 2. Deleting the hotplug.c file. > > After recent cleanups (e.g. 75ad2ab28f0f "ARM: EXYNOS: use > v7_exit_coherency_flush macro for cache di

RE: [PATCH v6 0/5] ARM: EXYNOS: cpuidle: fix AFTR mode on boards with secure firmware enabled

2014-09-08 Thread kgene
Bartlomiej Zolnierkiewicz wrote: > > Hi, > Hi, > This patch series adds support for AFTR idle mode on boards with > secure firmware enabled and allows EXYNOS cpuidle driver usage on > Exynos4x12 SoCs. > > It has been tested on Trats2 board (using Exynos4412 SoC with secure > firmware enabled) o

RE: [PATCH V4 1/6] clk: exynos-audss: convert to platform device

2014-01-03 Thread kgene
Tomasz Figa wrote: > > Hi Kukjin, Mike, > > On Monday 02 of December 2013 07:43:42 Kukjin Kim wrote: > > On 11/28/13 03:41, Mike Turquette wrote: > > > Quoting Padma Venkat (2013-11-25 22:29:44) > > >> Hi Mike and Kukjin, > > >> > > >> On Tue, Oct 8, 2013 at 10:23 PM, Andrew Bresticker > > >> w

RE: [PATCH] ARM: S3C24XX: Fix configuration of gpio port sizes on S3C24XX.

2013-12-13 Thread kgene
José Miguel Gonçalves wrote: > > On 27-09-2013 15:17, Linus Walleij wrote: > > On Wed, Sep 11, 2013 at 10:46 AM, José Miguel Gonçalves > > wrote: > > > >> Some GPIO line limits are incorrectly set which, for instance, > >> does not allow nRTS1 (GPH11) configuration on a S3C2416 chip. > >> > >> Si

RE: [PATCH v5 0/2] Adding USB 3.0 DRD-phy support for exynos5250

2013-02-12 Thread kgene
Vivek Gautam wrote: > > Based on 'usb-next' > > Changes from v4: > - Modifying function names and driver names to follow a common >naming convention. > "usb2phy" for samsung-usb2phy driver > "usb3phy" for samsung-usb3phy driver > - Changing file names "samsung-usb2.c" to "sa

RE: [PATCH 9/15] arch/arm/mach-s3c24xx/mach-h1940.c: removes unnecessary semicolon

2012-09-13 Thread kgene
Peter Senna Tschudin wrote: > > From: Peter Senna Tschudin > > removes unnecessary semicolon > > Found by Coccinelle: http://coccinelle.lip6.fr/ > > Signed-off-by: Peter Senna Tschudin > > --- > arch/arm/mach-s3c24xx/mach-h1940.c |2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) >

RE: [PATCH] arch/arm/mach-s3c24xx/mach-h1940.c: delete double assignment

2012-09-13 Thread kgene
Julia Lawall wrote: > > From: Julia Lawall > > Delete successive assignments to the same location. > > A simplified version of the semantic match that finds this problem is as > follows: (http://coccinelle.lip6.fr/) > > // > @@ > expression i; > @@ > > *i = ...; > i = ...; > // > > Signed