[PATCH 22/42] powerpc: Correct check for SPL

Simon Glass sjg at chromium.org
Fri Sep 27 00:35:47 CEST 2024


This variable does not exist so the condition will never be met. Fix it.

Signed-off-by: Simon Glass <sjg at chromium.org>
---

 arch/powerpc/lib/Makefile | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/powerpc/lib/Makefile b/arch/powerpc/lib/Makefile
index b218ae2b91c..64ac4930b62 100644
--- a/arch/powerpc/lib/Makefile
+++ b/arch/powerpc/lib/Makefile
@@ -44,5 +44,5 @@ obj-y	+= traps.o
 endif # not minimal
 
 ifdef CONFIG_XPL_BUILD
-obj-$(CONFIG_$(SPL_TPL)_FRAMEWORK) += spl.o
+obj-$(CONFIG_$(SPL_TPL_)FRAMEWORK) += spl.o
 endif
-- 
2.43.0



More information about the U-Boot mailing list