
12 Jun
2014
12 Jun
'14
5:34 a.m.
Hi Andre,
On 8 June 2014 18:46, Andre Renaud andre@bluewatersys.com wrote:
On 7 June 2014 07:13, Simon Glass sjg@chromium.org wrote:
The values here are int, but the map_to_sysmem() call can return a long. Add a cast to deal with this.
...
printf("%s- %s @ %08x", buf, in->name, map_to_sysmem(in));
printf("%s- %s @ %08x", buf, in->name, (uint)map_to_sysmem(in));
If the argument is a long, shouldn't it be printed as long, rather than possibly truncated to an int? printf("%s- %s @ %08lx", buf, in->name, map_to_sysmem(in));
I found that this happened on ARM, where sizeof(int) == sizeof(long) and was conscious that all addresses in U-Boot are 32-bits at present - hmmm is that still true?.
But yes that is more correct. I will change it.
Regards, Simon