projects
/
oweals
/
u-boot_mod.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
6d509b9
)
Add missing timer_init function in init sequence for not compressed U-Boot version
author
Piotr Dymacz
<pepe2k@gmail.com>
Wed, 30 Mar 2016 18:24:43 +0000
(20:24 +0200)
committer
Piotr Dymacz
<pepe2k@gmail.com>
Wed, 30 Mar 2016 18:24:43 +0000
(20:24 +0200)
u-boot/lib_mips/board.c
patch
|
blob
|
history
diff --git
a/u-boot/lib_mips/board.c
b/u-boot/lib_mips/board.c
index 998123d2604a6aafc0a19f238a24eedc39f3f227..268174719aadccbe0002a0c177abb63d98807186 100644
(file)
--- a/
u-boot/lib_mips/board.c
+++ b/
u-boot/lib_mips/board.c
@@
-160,7
+160,8
@@
init_fnc_t *init_sequence[] = { timer_init,
init_func_ram,
NULL, };
#else
-init_fnc_t *init_sequence[] = { env_init,
+init_fnc_t *init_sequence[] = { timer_init,
+ env_init,
baudrate_init,
serial_init,
console_init_f,