summaryrefslogtreecommitdiff
path: root/include/keyboard.h
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2015-11-11 17:05:48 (GMT)
committerSimon Glass <sjg@chromium.org>2015-11-20 03:13:41 (GMT)
commit91f815450f2c96dcf0507653767c8ae27f54ea2c (patch)
tree0fe97015fb494aee25c8eb6e7df1270d8d7c78f6 /include/keyboard.h
parent39f615ed8871e42677fc5283884b0ab36463b551 (diff)
downloadu-boot-fsl-qoriq-91f815450f2c96dcf0507653767c8ae27f54ea2c.tar.xz
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/keyboard.h')
-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 */