From 54fa2c5b51c564cce716942d26492437457980a4 Mon Sep 17 00:00:00 2001 From: Larry Johnson Date: Tue, 20 Apr 2010 08:09:43 -0400 Subject: Move test for unnecessary memmove to memmove_wd() Signed-off-by: Larry Johnson --- common/cmd_bootm.c | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) (limited to 'common/cmd_bootm.c') diff --git a/common/cmd_bootm.c b/common/cmd_bootm.c index 452686dd3dc..da060098af1 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"); -- cgit v1.2.3