summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2015-11-11 10:05:48 -0700
committerSimon Glass <sjg@chromium.org>2015-11-19 20:13:41 -0700
commit91f815450f2c96dcf0507653767c8ae27f54ea2c (patch)
tree0fe97015fb494aee25c8eb6e7df1270d8d7c78f6 /include
parent39f615ed8871e42677fc5283884b0ab36463b551 (diff)
downloadu-boot-imx-91f815450f2c96dcf0507653767c8ae27f54ea2c.zip
u-boot-imx-91f815450f2c96dcf0507653767c8ae27f54ea2c.tar.gz
u-boot-imx-91f815450f2c96dcf0507653767c8ae27f54ea2c.tar.bz2
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 <sjg@chromium.org>
Diffstat (limited to 'include')
-rw-r--r--include/keyboard.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/include/keyboard.h b/include/keyboard.h
index 5216d59..6725e48 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 */