mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-11 23:47:24 +00:00
Correct SPL use of OCTEON_SERIAL_BOOTCMD
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>
This commit is contained in:
parent
f00d58010d
commit
60b0002e25
1 changed files with 1 additions and 1 deletions
|
@ -451,7 +451,7 @@ int arch_misc_init(void)
|
||||||
if (CONFIG_IS_ENABLED(OCTEON_SERIAL_PCIE_CONSOLE))
|
if (CONFIG_IS_ENABLED(OCTEON_SERIAL_PCIE_CONSOLE))
|
||||||
init_pcie_console();
|
init_pcie_console();
|
||||||
|
|
||||||
if (CONFIG_IS_ENABLED(OCTEON_SERIAL_BOOTCMD))
|
if (IS_ENABLED(CONFIG_OCTEON_SERIAL_BOOTCMD))
|
||||||
init_bootcmd_console();
|
init_bootcmd_console();
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
|
|
Loading…
Reference in a new issue