From 91f815450f2c96dcf0507653767c8ae27f54ea2c Mon Sep 17 00:00:00 2001 From: Simon Glass Date: Wed, 11 Nov 2015 10:05:48 -0700 Subject: input: Convert 'keyboard' driver to use input library This has duplicated scan code tables and logic. We can use the input library to implement most of the features here. This needs testing. The only supported board appears to be TQM5200. Unfortunately no maintainer is listed for this board. Signed-off-by: Simon Glass --- include/keyboard.h | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'include/keyboard.h') diff --git a/include/keyboard.h b/include/keyboard.h index 5216d59fb7..6725e487bc 100644 --- a/include/keyboard.h +++ b/include/keyboard.h @@ -98,4 +98,9 @@ extern int kbd_init_hw(void); extern void pckbd_leds(unsigned char leds); #endif /* !CONFIG_DM_KEYBOARD */ +#if defined(CONFIG_MPC5xxx) || defined(CONFIG_MPC8540) || \ + defined(CONFIG_MPC8541) || defined(CONFIG_MPC8555) +int ps2ser_check(void); +#endif + #endif /* __KEYBOARD_H */ -- cgit v1.2.1