summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSimon Glass <[email protected]>2023-02-05 15:40:48 -0700
committerTom Rini <[email protected]>2023-02-10 07:41:40 -0500
commit8f7f4e94016201cdaeae5f6528353308c6669212 (patch)
treeb44f70702965a915f01babce3ad8fc657a3ae58d
parent1c6b832aea4ddbce25c03f4e56de8476507a5824 (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.c2
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;