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:
259afb1
)
rockchip: boot0: update CONFIG_ROCKCHIP_SPL_RESERVE_IRAM for SPL only
author
Kever Yang
<
[email protected]
>
Fri, 29 Mar 2019 14:48:28 +0000
(22:48 +0800)
committer
Kever Yang
<
[email protected]
>
Wed, 8 May 2019 09:34:12 +0000
(17:34 +0800)
The CONFIG_ROCKCHIP_SPL_RESERVE_IRAM is for SPL only, add
condition to limit it not affect TPL.
Signed-off-by: Kever Yang <
[email protected]
>
arch/arm/include/asm/arch-rockchip/boot0.h
patch
|
blob
|
history
diff --git
a/arch/arm/include/asm/arch-rockchip/boot0.h
b/arch/arm/include/asm/arch-rockchip/boot0.h
index 9ea4708ada93d5d151e8ed042c889e5446f40f4c..0c375e543a5e8b2ce4d662be7bf277e77b771962 100644
(file)
--- a/
arch/arm/include/asm/arch-rockchip/boot0.h
+++ b/
arch/arm/include/asm/arch-rockchip/boot0.h
@@
-54,6
+54,7
@@
_start:
ARM_VECTORS
#endif
-#if defined(CONFIG_SPL_BUILD) && (CONFIG_ROCKCHIP_SPL_RESERVE_IRAM > 0)
+#if !defined(CONFIG_TPL_BUILD) && defined(CONFIG_SPL_BUILD) && \
+ (CONFIG_ROCKCHIP_SPL_RESERVE_IRAM > 0)
.space CONFIG_ROCKCHIP_SPL_RESERVE_IRAM /* space for the ATF data */
#endif