diff options
| author | Simon Glass <[email protected]> | 2015-11-11 10:05:48 -0700 |
|---|---|---|
| committer | Simon Glass <[email protected]> | 2015-11-19 20:13:41 -0700 |
| commit | 91f815450f2c96dcf0507653767c8ae27f54ea2c (patch) | |
| tree | 0fe97015fb494aee25c8eb6e7df1270d8d7c78f6 /include/keyboard.h | |
| parent | 39f615ed8871e42677fc5283884b0ab36463b551 (diff) | |
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 <[email protected]>
Diffstat (limited to 'include/keyboard.h')
| -rw-r--r-- | include/keyboard.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/include/keyboard.h b/include/keyboard.h index 5216d59fb78..6725e487bcb 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 */ |
