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>
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();
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;