Re: [U-Boot] [PATCH] arm: fix bd pointer dereference prior initialization

2011-08-17 Thread Igor Grinberg
Hi Albert, Sorry for the poor responsiveness - I was out of office for about 2 weeks. On 08/12/11 12:20, Albert ARIBAUD wrote: Hi Igor, On 28/07/2011 11:04, Igor Grinberg wrote: gd-bd pointer has been used prior been initialized. Move the relevant code after the initialization.

Re: [U-Boot] [PATCH] arm: fix bd pointer dereference prior initialization

2011-08-12 Thread Albert ARIBAUD
Hi Igor, On 28/07/2011 11:04, Igor Grinberg wrote: gd-bd pointer has been used prior been initialized. Move the relevant code after the initialization. Signed-off-by: Igor Grinberggrinb...@compulab.co.il --- arch/arm/lib/board.c |8 1 files changed, 4 insertions(+), 4

[U-Boot] [PATCH] arm: fix bd pointer dereference prior initialization

2011-07-28 Thread Igor Grinberg
gd-bd pointer has been used prior been initialized. Move the relevant code after the initialization. Signed-off-by: Igor Grinberg grinb...@compulab.co.il --- arch/arm/lib/board.c |8 1 files changed, 4 insertions(+), 4 deletions(-) diff --git a/arch/arm/lib/board.c

Re: [U-Boot] [PATCH] arm: fix bd pointer dereference prior initialization

2011-07-28 Thread Chander Kashyap
On 28 July 2011 14:34, Igor Grinberg grinb...@compulab.co.il wrote: gd-bd pointer has been used prior been initialized. Move the relevant code after the initialization. Signed-off-by: Igor Grinberg grinb...@compulab.co.il tested-by: Chander Kashyap chander.kash...@linaro.org ---