From: Simon Glass Date: Sun, 5 Feb 2023 22:39:59 +0000 (-0700) Subject: Correct SPL use of FSL_CAAM X-Git-Url: http://git.dujemihanovic.xyz/html/index.html?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 --- 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;