diff options
| author | Simon Glass <[email protected]> | 2024-09-01 16:26:17 -0600 |
|---|---|---|
| committer | Tom Rini <[email protected]> | 2024-09-18 13:00:59 -0600 |
| commit | 4048219957fec6da92def7ca88ebf3836574856e (patch) | |
| tree | e7974c25c4092cf50fec212bcb8e7e690fbf2927 /drivers | |
| parent | a3fab7d1fb5d8daf762c9d6bfae3069f742c579e (diff) | |
usb: Drop old non-DM code
The driver model deadline for USB was in 2019, so drop the old USB
keyboard code, to avoid needing to deal with the extra code path.
Drop the unnecessary #ifdef around USB_KBD_BOOT_REPORT_SIZE while we
are here.
Signed-off-by: Simon Glass <[email protected]>
Diffstat (limited to 'drivers')
| -rw-r--r-- | drivers/usb/Kconfig | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/usb/Kconfig b/drivers/usb/Kconfig index a972d87c7ad..311aaa7e67f 100644 --- a/drivers/usb/Kconfig +++ b/drivers/usb/Kconfig @@ -99,7 +99,8 @@ config USB_STORAGE config USB_KEYBOARD bool "USB Keyboard support" - select DM_KEYBOARD if DM_USB + depends on DM_USB + select DM_KEYBOARD select SYS_STDIO_DEREGISTER ---help--- Say Y here if you want to use a USB keyboard for U-Boot command line |
