summaryrefslogtreecommitdiff
path: root/board/kontron
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2023-02-06 01:40:48 +0300
committerTom Rini <trini@konsulko.com>2023-02-10 15:41:40 +0300
commit8f7f4e94016201cdaeae5f6528353308c6669212 (patch)
treeb44f70702965a915f01babce3ad8fc657a3ae58d /board/kontron
parent1c6b832aea4ddbce25c03f4e56de8476507a5824 (diff)
downloadu-boot-8f7f4e94016201cdaeae5f6528353308c6669212.tar.xz
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 <sjg@chromium.org>
Diffstat (limited to 'board/kontron')
-rw-r--r--board/kontron/sl28/sl28.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/board/kontron/sl28/sl28.c b/board/kontron/sl28/sl28.c
index 4ad6b32347..257923685a 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;