Re: [U-Boot] [PATCH] cmd_mem: fix cp command

2013-05-24 Thread Tom Rini
On Tue, May 21, 2013 at 04:08:08PM +0900, Masahiro Yamada wrote: > The "cp" command has not worked since > commit 0628ab8ec59834f98ede267edd21ddb8ba0bb57b, > because of the following lines, which set the destination > and the source to the same address. > > buf = map_sysmem(addr, bytes); >

[U-Boot] [PATCH] cmd_mem: fix cp command

2013-05-21 Thread Masahiro Yamada
The "cp" command has not worked since commit 0628ab8ec59834f98ede267edd21ddb8ba0bb57b, because of the following lines, which set the destination and the source to the same address. buf = map_sysmem(addr, bytes); src = map_sysmem(addr, bytes); Signed-off-by: Masahiro Yamada --- c