Re: [U-Boot] [PATCH 2/2 v2] Exynos5: spl: Reduce clock init in spl

2013-03-08 Thread Akshay Saraswat
Hi simon, >+ Albert, Tom who might know about this > >Hi Akshay, > >On Wed, Mar 6, 2013 at 7:36 AM, Akshay Saraswat wrote: >> Hi Simon, >> >>>Hi Akshay, >>> >>>On Tue, Mar 5, 2013 at 2:53 AM, Akshay Saraswat wrote: This patch subtracts a part of clock init from spl and executes it afte

Re: [U-Boot] [PATCH 2/2 v2] Exynos5: spl: Reduce clock init in spl

2013-03-07 Thread Simon Glass
+ Albert, Tom who might know about this Hi Akshay, On Wed, Mar 6, 2013 at 7:36 AM, Akshay Saraswat wrote: > Hi Simon, > >>Hi Akshay, >> >>On Tue, Mar 5, 2013 at 2:53 AM, Akshay Saraswat wrote: >>> This patch subtracts a part of clock init from spl >>> and executes it after relocation. spl_clock

Re: [U-Boot] [PATCH 2/2 v2] Exynos5: spl: Reduce clock init in spl

2013-03-06 Thread Akshay Saraswat
Hi Simon, >Hi Akshay, > >On Tue, Mar 5, 2013 at 2:53 AM, Akshay Saraswat wrote: >> This patch subtracts a part of clock init from spl >> and executes it after relocation. spl_clock_init >> executes in spl and system_clock_init executes after >> relocation in u-boot. This is done to gain some spac

Re: [U-Boot] [PATCH 2/2 v2] Exynos5: spl: Reduce clock init in spl

2013-03-06 Thread Akshay Saraswat
Hi Simon, >Hi Akshay, > >On Tue, Mar 5, 2013 at 2:53 AM, Akshay Saraswat wrote: >> This patch subtracts a part of clock init from spl >> and executes it after relocation. spl_clock_init >> executes in spl and system_clock_init executes after >> relocation in u-boot. This is done to gain some spac

Re: [U-Boot] [PATCH 2/2 v2] Exynos5: spl: Reduce clock init in spl

2013-03-05 Thread Simon Glass
Hi Akshay, On Tue, Mar 5, 2013 at 2:53 AM, Akshay Saraswat wrote: > This patch subtracts a part of clock init from spl > and executes it after relocation. spl_clock_init > executes in spl and system_clock_init executes after > relocation in u-boot. This is done to gain some space by > removing in

Re: [U-Boot] [PATCH 2/2 v2] Exynos5: spl: Reduce clock init in spl

2013-03-05 Thread Alim Akhtar
Hi Akshay On Tue, Mar 5, 2013 at 4:23 PM, Akshay Saraswat wrote: > This patch subtracts a part of clock init from spl > and executes it after relocation. spl_clock_init > executes in spl and system_clock_init executes after > relocation in u-boot. This is done to gain some space by > removing ini

[U-Boot] [PATCH 2/2 v2] Exynos5: spl: Reduce clock init in spl

2013-03-05 Thread Akshay Saraswat
This patch subtracts a part of clock init from spl and executes it after relocation. spl_clock_init executes in spl and system_clock_init executes after relocation in u-boot. This is done to gain some space by removing initially not necessary code. Signed-off-by: Akshay Saraswat --- Changes since