Re: [U-Boot] [PATCH v4 07/13] davinci: Use correct #ifdef around gdata/bdata

2012-03-03 Thread Simon Glass
Hi, On Mon, Feb 27, 2012 at 4:02 AM, Sughosh Ganu urwithsugh...@gmail.com wrote: hi Christian, On Mon Feb 27, 2012 at 12:37:16PM +0100, Christian Riesch wrote: Hi Sughosh, On Mon, Feb 27, 2012 at 11:56 AM, Sughosh Ganu urwithsugh...@gmail.com wrote: hi Christian, On Mon Feb 27, 2012

Re: [U-Boot] [PATCH v4 07/13] davinci: Use correct #ifdef around gdata/bdata

2012-02-28 Thread Albert ARIBAUD
Le 27/02/2012 13:02, Sughosh Ganu a écrit : When I asked Heiko Schocher a few month ago why he defined putc and puts in arch/arm/cpu/arm926ejs/davinci/spl.c he replied that he could not use LIBCOMMON due to size limitations for the SPL. So I guess that this board will not be able to use the

Re: [U-Boot] [PATCH v4 07/13] davinci: Use correct #ifdef around gdata/bdata

2012-02-28 Thread Scott Wood
On 02/28/2012 03:55 PM, Albert ARIBAUD wrote: Le 27/02/2012 13:02, Sughosh Ganu a écrit : When I asked Heiko Schocher a few month ago why he defined putc and puts in arch/arm/cpu/arm926ejs/davinci/spl.c he replied that he could not use LIBCOMMON due to size limitations for the SPL. So I

Re: [U-Boot] [PATCH v4 07/13] davinci: Use correct #ifdef around gdata/bdata

2012-02-27 Thread Sughosh Ganu
hi Simon, On Sun Feb 26, 2012 at 09:56:37AM -0800, Simon Glass wrote: Hi Sughosh, On Thu, Feb 23, 2012 at 9:25 AM, Sughosh Ganu urwithsugh...@gmail.com wrote: hi Simon, On Mon Feb 20, 2012 at 05:32:49PM -0800, Simon Glass wrote: This fixes the following warnings in an SPL build when

Re: [U-Boot] [PATCH v4 07/13] davinci: Use correct #ifdef around gdata/bdata

2012-02-27 Thread Christian Riesch
Hi, On Mon, Feb 27, 2012 at 11:16 AM, Sughosh Ganu urwithsugh...@gmail.com wrote: hi Simon, On Sun Feb 26, 2012 at 09:56:37AM -0800, Simon Glass wrote: Hi Sughosh, On Thu, Feb 23, 2012 at 9:25 AM, Sughosh Ganu urwithsugh...@gmail.com wrote: hi Simon, On Mon Feb 20, 2012 at

Re: [U-Boot] [PATCH v4 07/13] davinci: Use correct #ifdef around gdata/bdata

2012-02-27 Thread Sughosh Ganu
hi Christian, On Mon Feb 27, 2012 at 11:39:42AM +0100, Christian Riesch wrote: Hi, On Mon, Feb 27, 2012 at 11:16 AM, Sughosh Ganu urwithsugh...@gmail.com wrote: snip  arch/arm/cpu/arm926ejs/davinci/spl.c |    2 ++  1 files changed, 2 insertions(+), 0 deletions(-) diff --git

Re: [U-Boot] [PATCH v4 07/13] davinci: Use correct #ifdef around gdata/bdata

2012-02-27 Thread Christian Riesch
Hi Sughosh, On Mon, Feb 27, 2012 at 11:56 AM, Sughosh Ganu urwithsugh...@gmail.com wrote: hi Christian, On Mon Feb 27, 2012 at 11:39:42AM +0100, Christian Riesch wrote: Hi, On Mon, Feb 27, 2012 at 11:16 AM, Sughosh Ganu urwithsugh...@gmail.com wrote: snip  

Re: [U-Boot] [PATCH v4 07/13] davinci: Use correct #ifdef around gdata/bdata

2012-02-27 Thread Sughosh Ganu
hi Christian, On Mon Feb 27, 2012 at 12:37:16PM +0100, Christian Riesch wrote: Hi Sughosh, On Mon, Feb 27, 2012 at 11:56 AM, Sughosh Ganu urwithsugh...@gmail.com wrote: hi Christian, On Mon Feb 27, 2012 at 11:39:42AM +0100, Christian Riesch wrote: Hi, On Mon, Feb 27, 2012 at

Re: [U-Boot] [PATCH v4 07/13] davinci: Use correct #ifdef around gdata/bdata

2012-02-26 Thread Simon Glass
Hi Sughosh, On Thu, Feb 23, 2012 at 9:25 AM, Sughosh Ganu urwithsugh...@gmail.com wrote: hi Simon, On Mon Feb 20, 2012 at 05:32:49PM -0800, Simon Glass wrote: This fixes the following warnings in an SPL build when libcommon is in use: spl.c:37: warning: 'gdata' defined but not used

Re: [U-Boot] [PATCH v4 07/13] davinci: Use correct #ifdef around gdata/bdata

2012-02-23 Thread Sughosh Ganu
hi Simon, On Mon Feb 20, 2012 at 05:32:49PM -0800, Simon Glass wrote: This fixes the following warnings in an SPL build when libcommon is in use: spl.c:37: warning: 'gdata' defined but not used spl.c:38: warning: 'bdata' defined but not used Signed-off-by: Simon Glass s...@chromium.org

Re: [U-Boot] [PATCH v4 07/13] davinci: Use correct #ifdef around gdata/bdata

2012-02-21 Thread Tom Rini
On Mon, Feb 20, 2012 at 05:32:49PM -0800, Simon Glass wrote: This fixes the following warnings in an SPL build when libcommon is in use: spl.c:37: warning: 'gdata' defined but not used spl.c:38: warning: 'bdata' defined but not used Signed-off-by: Simon Glass s...@chromium.org Acked-by:

[U-Boot] [PATCH v4 07/13] davinci: Use correct #ifdef around gdata/bdata

2012-02-20 Thread Simon Glass
This fixes the following warnings in an SPL build when libcommon is in use: spl.c:37: warning: 'gdata' defined but not used spl.c:38: warning: 'bdata' defined but not used Signed-off-by: Simon Glass s...@chromium.org --- Changes in v4: - Add new patch to fix davinci build warnings