Re: [U-Boot] [PATCH] common: Remove invalid endianess conversion

2014-02-05 Thread Wolfgang Denk
Dear Christian Eggers, In message <1391633046-8878-1-git-send-email-cegg...@gmx.de> you wrote: > do_bootm_standanlone() calls ntohl(images->ep) which is obviously wrong > (find . -name '*.c' | xargs grep -n -- 'images->ep'). Without this > conversion the code works correctly at least on ARM9. Addt

[U-Boot] [PATCH] common: Remove invalid endianess conversion

2014-02-05 Thread Christian Eggers
do_bootm_standanlone() calls ntohl(images->ep) which is obviously wrong (find . -name '*.c' | xargs grep -n -- 'images->ep'). Without this conversion the code works correctly at least on ARM9. Addtionally "appl" must not be dereferenced with the "*" operator. Signed-off-by: Christian Eggers ---