From: Simon Glass <sjg@chromium.org>
Date: Sun, 5 Feb 2023 22:39:59 +0000 (-0700)
Subject: Correct SPL use of FSL_CAAM
X-Git-Tag: v2025.01-rc5-pxa1908~1114^2~66
X-Git-Url: http://git.dujemihanovic.xyz/%22mailto:Murray.Jensen%40csiro.au/static/%7B%7B%20.Permalink%20%7D%7D?a=commitdiff_plain;h=91c50987fb1b2a3191e952b6d78195390072ea0f;p=u-boot.git

Correct SPL use of FSL_CAAM

This converts 1 usage of this option to the non-SPL form, since there is
no SPL_FSL_CAAM defined in Kconfig

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

diff --git a/board/traverse/ten64/ten64.c b/board/traverse/ten64/ten64.c
index e6403cad1f..d3ff1d143b 100644
--- a/board/traverse/ten64/ten64.c
+++ b/board/traverse/ten64/ten64.c
@@ -123,7 +123,7 @@ int board_init(void)
 {
 	init_final_memctl_regs();
 
-	if (CONFIG_IS_ENABLED(FSL_CAAM))
+	if (IS_ENABLED(CONFIG_FSL_CAAM))
 		sec_init();
 
 	return 0;