diff options
| author | Simon Glass <[email protected]> | 2023-02-05 15:39:59 -0700 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2023-02-09 16:32:26 -0500 |
| commit | 91c50987fb1b2a3191e952b6d78195390072ea0f (patch) | |
| tree | 367cad1c27d33dcde10468f69d48c57c61337a33 | |
| parent | 96e3b52b24f9adbd4c0a785491afec97975dd8d0 (diff) | |
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 <[email protected]>
| -rw-r--r-- | board/traverse/ten64/ten64.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/traverse/ten64/ten64.c b/board/traverse/ten64/ten64.c index e6403cad1f5..d3ff1d143b0 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; |
