]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
Correct SPL use of OCTEON_SERIAL_BOOTCMD
authorSimon Glass <sjg@chromium.org>
Sun, 5 Feb 2023 22:40:22 +0000 (15:40 -0700)
committerTom Rini <trini@konsulko.com>
Fri, 10 Feb 2023 12:41:39 +0000 (07:41 -0500)
This converts 1 usage of this option to the non-SPL form, since there is
no SPL_OCTEON_SERIAL_BOOTCMD defined in Kconfig

Signed-off-by: Simon Glass <sjg@chromium.org>
arch/mips/mach-octeon/cpu.c

index 1bdc6cd72903bcbe4af75576337df3a3c26c1a7c..5adf4ba32c8b1a7ec8a06b9999ce0b3841802068 100644 (file)
@@ -451,7 +451,7 @@ int arch_misc_init(void)
        if (CONFIG_IS_ENABLED(OCTEON_SERIAL_PCIE_CONSOLE))
                init_pcie_console();
 
-       if (CONFIG_IS_ENABLED(OCTEON_SERIAL_BOOTCMD))
+       if (IS_ENABLED(CONFIG_OCTEON_SERIAL_BOOTCMD))
                init_bootcmd_console();
 
        return 0;