Re: [U-Boot] [PATCH] common/cmd_fdt.c: fix wrong data displayed in fdt print

2011-06-01 Thread Jerry Van Baren
On 06/01/2011 04:45 PM, Wolfgang Denk wrote: > Dear Haojian Zhuang, > > In message<1306137210-31942-1-git-send-email-haojian.zhu...@marvell.com> you > wrote: [snip] > Applied, thanks. > > Gerald, I hope this is OK with you? Yes. > Best regards, > Wolfgang Denk Thanks, gvb __

Re: [U-Boot] [PATCH] common/cmd_fdt.c: fix wrong data displayed in fdt print

2011-06-01 Thread Wolfgang Denk
Dear Haojian Zhuang, In message <1306137210-31942-1-git-send-email-haojian.zhu...@marvell.com> you wrote: > From: Haojian Zhuang > > All data in dtb is big endian. Some ARM devices are little-endian. > In print_data(), it displays data with big-endian format. For ARM device, > data should be co

[U-Boot] [PATCH] common/cmd_fdt.c: fix wrong data displayed in fdt print

2011-05-23 Thread Haojian Zhuang
From: Haojian Zhuang All data in dtb is big endian. Some ARM devices are little-endian. In print_data(), it displays data with big-endian format. For ARM device, data should be converted to little-endian first. Signed-off-by: Haojian Zhuang Cc: Gerald Van Baren --- common/cmd_fdt.c |2 +-