projects
/
project
/
bcm63xx
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
b496eec
)
stm32mp1: spl: hang with trace when DDR init failed
author
Patrick Delaunay
<patrick.delaunay@st.com>
Wed, 27 Feb 2019 16:01:17 +0000
(17:01 +0100)
committer
Patrick Delaunay
<patrick.delaunay@st.com>
Fri, 12 Apr 2019 14:09:13 +0000
(16:09 +0200)
When DDR initialization failed, print error message
and stop the SPL execution.
Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com>
arch/arm/mach-stm32mp/spl.c
patch
|
blob
|
history
diff --git
a/arch/arm/mach-stm32mp/spl.c
b/arch/arm/mach-stm32mp/spl.c
index 501e077fb394663b010fcbd1d91410db81553b61..a3b0d6f38252a63a4e564e86e4adb1f6aaf52a2f 100644
(file)
--- a/
arch/arm/mach-stm32mp/spl.c
+++ b/
arch/arm/mach-stm32mp/spl.c
@@
-111,7
+111,7
@@
void board_init_f(ulong dummy)
ret = uclass_get_device(UCLASS_RAM, 0, &dev);
if (ret) {
-
debug
("DRAM init failed: %d\n", ret);
-
return
;
+
printf
("DRAM init failed: %d\n", ret);
+
hang()
;
}
}