projects
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
0e8d158
)
bootm arm/avr32/blackfin/microblaze/nios2/sh: remove no more need 'error' label
author
Jean-Christophe PLAGNIOL-VILLARD
<plagnioj@jcrosoft.com>
Wed, 10 Sep 2008 20:48:09 +0000
(22:48 +0200)
committer
Jean-Christophe PLAGNIOL-VILLARD
<plagnioj@jcrosoft.com>
Wed, 10 Sep 2008 20:48:09 +0000
(22:48 +0200)
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
lib_avr32/bootm.c
patch
|
blob
|
history
lib_blackfin/bootm.c
patch
|
blob
|
history
lib_microblaze/bootm.c
patch
|
blob
|
history
lib_nios2/bootm.c
patch
|
blob
|
history
lib_sh/bootm.c
patch
|
blob
|
history
diff --git
a/lib_avr32/bootm.c
b/lib_avr32/bootm.c
index 8a6109de14d03c3d51adcc8dc202221f66a32c8b..35240e2eed6b73241af4da6dc8a43fb189718082 100644
(file)
--- 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;
}
diff --git
a/lib_blackfin/bootm.c
b/lib_blackfin/bootm.c
index d0afb21ebb8a128d74de8902ca69f5253beea976..9938ae5865adc4f040e74b6094fce1ba808ef4e6 100644
(file)
--- a/
lib_blackfin/bootm.c
+++ b/
lib_blackfin/bootm.c
@@
-48,6
+48,6
@@
int do_bootm_linux(int flag, int argc, char *argv[], bootm_headers_t *images)
dcache_disable();
(*appl) (cmdline);
/* does not return */
-error:
+
return 1;
}
diff --git
a/lib_microblaze/bootm.c
b/lib_microblaze/bootm.c
index 5986a31cc8313c7afd7ca19e2c3e641a4fa7f3c2..52fe068e03bbda3397610c0c7bf660d68a906122 100644
(file)
--- a/
lib_microblaze/bootm.c
+++ b/
lib_microblaze/bootm.c
@@
-49,6
+49,6
@@
int do_bootm_linux(int flag, int argc, char *argv[], bootm_headers_t *images)
theKernel (commandline);
/* does not return */
-error:
+
return 1;
}
diff --git
a/lib_nios2/bootm.c
b/lib_nios2/bootm.c
index c0be4fdbf4d7816ea3cf7451240a23b3bb636d00..34f5b8ff8296bf5dcc11eb444a67024fe4c0207e 100644
(file)
--- a/
lib_nios2/bootm.c
+++ b/
lib_nios2/bootm.c
@@
-35,6
+35,5
@@
int do_bootm_linux(int flag, int argc, char *argv[], bootm_headers_t *images)
kernel ();
/* does not return */
-error:
return 1;
}
diff --git
a/lib_sh/bootm.c
b/lib_sh/bootm.c
index e92c84831209b7d9ad82cf5eefd07f9bdf8c377a..bc1c3da9e23a98f83bedd52bb8acec3d18f36d82 100644
(file)
--- a/
lib_sh/bootm.c
+++ b/
lib_sh/bootm.c
@@
-70,6
+70,5
@@
int do_bootm_linux(int flag, int argc, char *argv[], bootm_headers_t *images)
kernel();
/* does not return */
-error:
return 1;
}