diff options
| author | Simon Glass <[email protected]> | 2023-02-05 15:40:48 -0700 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2023-02-10 07:41:40 -0500 |
| commit | 8f7f4e94016201cdaeae5f6528353308c6669212 (patch) | |
| tree | b44f70702965a915f01babce3ad8fc657a3ae58d | |
| parent | 1c6b832aea4ddbce25c03f4e56de8476507a5824 (diff) | |
Correct SPL use of SL28CPLD
This converts 1 usage of this option to the non-SPL form, since there is
no SPL_SL28CPLD defined in Kconfig
Signed-off-by: Simon Glass <[email protected]>
| -rw-r--r-- | board/kontron/sl28/sl28.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/board/kontron/sl28/sl28.c b/board/kontron/sl28/sl28.c index 4ad6b323476..257923685a5 100644 --- a/board/kontron/sl28/sl28.c +++ b/board/kontron/sl28/sl28.c @@ -109,7 +109,7 @@ static void print_cpld_version(void) int checkboard(void) { printf("EL: %d\n", current_el()); - if (CONFIG_IS_ENABLED(SL28CPLD)) + if (IS_ENABLED(CONFIG_SL28CPLD)) print_cpld_version(); return 0; |
