diff options
author | Simon Glass | 2018-03-19 15:20:25 -0600 |
---|---|---|
committer | Tom Rini | 2018-04-06 17:04:33 -0400 |
commit | b79b9f198bad2c2ad58319a88bd5adca3a54b864 (patch) | |
tree | 213b2fa103821bb5723550f3f8d68680b9e9edef /common | |
parent | 22fc7b6cd6e66911c58848d03eb0f1ddee024137 (diff) |
input: Drop PS/2 keyboard support
This is not used by any current board and has not been converted to driver
model. Drop it.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common')
-rw-r--r-- | common/board_r.c | 15 |
1 files changed, 0 insertions, 15 deletions
diff --git a/common/board_r.c b/common/board_r.c index 89f2e16b71a..0f4479a58bc 100644 --- a/common/board_r.c +++ b/common/board_r.c @@ -23,9 +23,6 @@ #include <fdtdec.h> #include <ide.h> #include <initcall.h> -#ifdef CONFIG_PS2KBD -#include <keyboard.h> -#endif #if defined(CONFIG_CMD_KGDB) #include <kgdb.h> #endif @@ -641,15 +638,6 @@ static int initr_bedbug(void) } #endif -#ifdef CONFIG_PS2KBD -static int initr_kbd(void) -{ - puts("PS/2: "); - kbd_init(); - return 0; -} -#endif - static int run_main_loop(void) { #ifdef CONFIG_SANDBOX @@ -858,9 +846,6 @@ static init_fnc_t init_sequence_r[] = { #if defined(CONFIG_PRAM) initr_mem, #endif -#ifdef CONFIG_PS2KBD - initr_kbd, -#endif run_main_loop, }; |