]> git.baikalelectronics.ru Git - uboot.git/commitdiff
Correct SPL uses of USB_KEYBOARD
authorSimon Glass <sjg@chromium.org>
Mon, 6 Feb 2023 00:55:28 +0000 (17:55 -0700)
committerTom Rini <trini@konsulko.com>
Fri, 10 Feb 2023 12:41:40 +0000 (07:41 -0500)
This converts 2 usages of this option to the non-SPL form, since there is
no SPL_USB_KEYBOARD defined in Kconfig

Signed-off-by: Simon Glass <sjg@chromium.org>
arch/x86/cpu/coreboot/coreboot.c
arch/x86/cpu/efi/payload.c

index aaa5ae112e4546be099c9caf4d3d5f450cafe3ef..d7eedbd7436ef6a01c486319f19bf13be66199df 100644 (file)
@@ -77,7 +77,7 @@ static void board_final_init(void)
 int last_stage_init(void)
 {
        /* start usb so that usb keyboard can be used as input device */
-       if (CONFIG_IS_ENABLED(USB_KEYBOARD))
+       if (IS_ENABLED(CONFIG_USB_KEYBOARD))
                usb_init();
 
        board_final_init();
index 1c28a43778ec070573c1a803a5264070b63a52d5..19a25dd640817081c2209110f1189715dd848b2c 100644 (file)
@@ -171,7 +171,7 @@ int reserve_arch(void)
 int last_stage_init(void)
 {
        /* start usb so that usb keyboard can be used as input device */
-       if (CONFIG_IS_ENABLED(USB_KEYBOARD))
+       if (IS_ENABLED(CONFIG_USB_KEYBOARD))
                usb_init();
 
        return 0;