]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
Correct SPL use of SL28CPLD
authorSimon Glass <sjg@chromium.org>
Sun, 5 Feb 2023 22:40:48 +0000 (15:40 -0700)
committerTom Rini <trini@konsulko.com>
Fri, 10 Feb 2023 12:41:40 +0000 (07:41 -0500)
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>
board/kontron/sl28/sl28.c

index 4ad6b323476ce674257e2209b82d51bc4cd4a5b9..257923685a5ca3590534a92253966a8c9ee24abf 100644 (file)
@@ -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;