diff options
Diffstat (limited to 'lib_avr32/bootm.c')
| -rw-r--r-- | lib_avr32/bootm.c | 6 | 
1 files changed, 1 insertions, 5 deletions
| diff --git a/lib_avr32/bootm.c b/lib_avr32/bootm.c index 5ff8c79e9..60e6b3636 100644 --- a/lib_avr32/bootm.c +++ b/lib_avr32/bootm.c @@ -221,9 +221,6 @@ void do_bootm_linux(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[],  	params = setup_ethernet_tags(params);  	setup_end_tag(params); -	if (!images->autostart) -		return ; -  	printf("\nStarting kernel at %p (params at %p)...\n\n",  	       theKernel, params_start); @@ -234,7 +231,6 @@ void do_bootm_linux(cmd_tbl_t *cmdtp, int flag, int argc, char *argv[],  	return;  error: -	if (images->autostart) -		do_reset (cmdtp, flag, argc, argv); +	do_reset (cmdtp, flag, argc, argv);  	return;  } |