diff options
author | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2008-09-10 22:48:09 +0200 |
---|---|---|
committer | Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> | 2008-09-10 22:48:09 +0200 |
commit | a3a08c0cedd329edf5256e1d6b2bad0fca002725 (patch) | |
tree | bfd2a8ee8f0407a3eca16cd5560302ed64f9e674 /lib_avr32 | |
parent | 0e8d158664a913392cb01fb11a948d83f72e105e (diff) | |
download | u-boot-a3a08c0cedd329edf5256e1d6b2bad0fca002725.tar.gz |
bootm arm/avr32/blackfin/microblaze/nios2/sh: remove no more need 'error' label
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
Diffstat (limited to 'lib_avr32')
-rw-r--r-- | lib_avr32/bootm.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib_avr32/bootm.c b/lib_avr32/bootm.c index 8a6109de14..35240e2eed 100644 --- a/lib_avr32/bootm.c +++ b/lib_avr32/bootm.c @@ -202,6 +202,6 @@ int do_bootm_linux(int flag, int argc, char *argv[], bootm_headers_t *images) theKernel(ATAG_MAGIC, params_start); /* does not return */ -error: + return 1; } |