Re: [U-Boot] Subject: [PATCH] Fix for bug in memory sizing code

2012-09-21 Thread Gerlando Falauto
Hi, this patch actually breaks the mpc83xx board I am currently working on, leading to a detected size of 2 GiB (as opposed to the actual size of 128 MiB). I tried reviewing it and couldn't really figure out why, as it seems legitimate, and I currently don't have a chance to check it on other

Re: [U-Boot] Subject: [PATCH] Fix for bug in memory sizing code

2012-09-21 Thread Tom Rini
On 09/21/12 04:15, Gerlando Falauto wrote: Hi, this patch actually breaks the mpc83xx board I am currently working on, leading to a detected size of 2 GiB (as opposed to the actual size of 128 MiB). I tried reviewing it and couldn't really figure out why, as it seems legitimate, and I currently

Re: [U-Boot] Subject: [PATCH] Fix for bug in memory sizing code

2012-09-18 Thread Tom Rini
On Sun, Sep 09, 2012 at 08:16:58PM -, Iwo Mergler wrote: The original memory sizing code in get_ram_size clobbers the word at the base address, but forgets to restore it. Signed-off-by: Iwo Mergler iwo.merg...@netcommwireless.com Applied to u-boot/master, thanks! -- Tom

[U-Boot] Subject: [PATCH] Fix for bug in memory sizing code

2012-09-10 Thread Iwo Mergler
The original memory sizing code in get_ram_size clobbers the word at the base address, but forgets to restore it. Signed-off-by: Iwo Mergler iwo.merg...@netcommwireless.com --- common/memsize.c |1 + 1 files changed, 1 insertions(+), 0 deletions(-) diff --git a/common/memsize.c