Dear Heiko Schocher,
>> start = first entry, end = address AFTER last entry,
>> so it should be "blt", or?
> 
> Yep. But I think, ble is right ... we should know, why this
> entry is filled with 00000000

No, we want a loop through all entries:

start:  1st entry
        2nd entry
        ...
        last entry
end:

so it must be:

for (p = start; p < end; p += 8)
        work;
and not 

for (p = start; p <= end; p += 8)
        work;

Reinhard

_______________________________________________
U-Boot mailing list
[email protected]
http://lists.denx.de/mailman/listinfo/u-boot

Reply via email to