diff options
author | Larry Johnson <lrj@acm.org> | 2010-04-20 08:09:43 -0400 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2010-05-06 00:38:06 +0200 |
commit | 54fa2c5b51c564cce716942d26492437457980a4 (patch) | |
tree | 63be71e6e7ddb2b08facb1ebc7376f1683a8fe03 /common/cmd_bootm.c | |
parent | b050c72d52c4e30d5b978ab6758f8dcdbe5c690c (diff) | |
download | u-boot-54fa2c5b51c564cce716942d26492437457980a4.tar.gz |
Move test for unnecessary memmove to memmove_wd()
Signed-off-by: Larry Johnson <lrj@acm.org>
Diffstat (limited to 'common/cmd_bootm.c')
-rw-r--r-- | common/cmd_bootm.c | 7 |
1 files changed, 2 insertions, 5 deletions
diff --git a/common/cmd_bootm.c b/common/cmd_bootm.c index 452686dd3d..da060098af 100644 --- a/common/cmd_bootm.c +++ b/common/cmd_bootm.c @@ -344,11 +344,8 @@ static int bootm_load_os(image_info_t os, ulong *load_end, int boot_progress) printf (" XIP %s ... ", type_name); } else { printf (" Loading %s ... ", type_name); - - if (load != image_start) { - memmove_wd ((void *)load, - (void *)image_start, image_len, CHUNKSZ); - } + memmove_wd ((void *)load, (void *)image_start, + image_len, CHUNKSZ); } *load_end = load + image_len; puts("OK\n"); |