diff options
Diffstat (limited to 'common/cmd_bootm.c')
| -rw-r--r-- | common/cmd_bootm.c | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/common/cmd_bootm.c b/common/cmd_bootm.c index 15f4599d4..d2b5cce51 100644 --- a/common/cmd_bootm.c +++ b/common/cmd_bootm.c @@ -306,7 +306,7 @@ static int bootm_start(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[]  #if defined(CONFIG_OF_LIBFDT)  		/* find flattened device tree */ -		ret = boot_get_fdt(flag, argc, argv, &images, +		ret = boot_get_fdt(flag, argc, argv, IH_ARCH_DEFAULT, &images,  				   &images.ft_addr, &images.ft_len);  		if (ret) {  			puts("Could not find a valid device tree\n"); @@ -1820,7 +1820,7 @@ static int bootz_start(cmd_tbl_t *cmdtp, int flag, int argc,  #if defined(CONFIG_OF_LIBFDT)  	/* find flattened device tree */ -	ret = boot_get_fdt(flag, argc, argv, images, +	ret = boot_get_fdt(flag, argc, argv, IH_ARCH_DEFAULT, images,  			   &images->ft_addr, &images->ft_len);  	if (ret) {  		puts("Could not find a valid device tree\n"); |