diff options
author | Tom Rini <trini@konsulko.com> | 2022-10-14 07:50:20 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-10-21 13:47:56 -0400 |
commit | f60e6f67676470d1502549fef056bce73d0c0b00 (patch) | |
tree | b5c1fcb7dc51d0631fb25467c5c103b375d8c4af /common | |
parent | 9af4a0c8a6ffb34e968bdcb8bcaf8d97610e53b3 (diff) | |
download | u-boot-f60e6f67676470d1502549fef056bce73d0c0b00.zip u-boot-f60e6f67676470d1502549fef056bce73d0c0b00.tar.gz u-boot-f60e6f67676470d1502549fef056bce73d0c0b00.tar.bz2 |
input: Remove legacy KEYBOARD option
There are no platforms that have not migrated to using DM_KEYBOARD,
remove the legacy option.
Cc: Simon Glass <sjg@chromium.org>
Signed-off-by: Tom Rini <trini@konsulko.com>
Reviewed-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common')
-rw-r--r-- | common/stdio.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/common/stdio.c b/common/stdio.c index e316a35..92811ba 100644 --- a/common/stdio.c +++ b/common/stdio.c @@ -373,9 +373,6 @@ int stdio_add_devices(void) drv_video_init(); } -#if defined(CONFIG_KEYBOARD) && !defined(CONFIG_DM_KEYBOARD) - drv_keyboard_init(); -#endif drv_system_init(); serial_stdio_init(); #ifdef CONFIG_USB_TTY |