diff options
author | Simon Glass <sjg@chromium.org> | 2015-11-11 10:05:45 -0700 |
---|---|---|
committer | Simon Glass <sjg@chromium.org> | 2015-11-19 20:13:41 -0700 |
commit | dcbf825714e27a4c39edcc36c7623b37bc40040a (patch) | |
tree | 18a0809ce4339a0f91819e09216a2ac45c89af4e /include | |
parent | 51a8a72dc5064eb6d2f800a1da883a044b17c58b (diff) | |
download | u-boot-dcbf825714e27a4c39edcc36c7623b37bc40040a.tar.gz |
input: Convert i8042 to driver model
Adjust this driver to support driver model. The only users are x86 boards
so this should be safe.
Signed-off-by: Simon Glass <sjg@chromium.org>
Reviewed-by: Bin Meng <bmeng.cn@gmail.com>
Tested-by: Bin Meng <bmeng.cn@gmail.com>
Diffstat (limited to 'include')
-rw-r--r-- | include/i8042.h | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/include/i8042.h b/include/i8042.h index e0afce174a..9723b6a664 100644 --- a/include/i8042.h +++ b/include/i8042.h @@ -87,10 +87,4 @@ void i8042_flush(void); */ int i8042_disable(void); -struct stdio_dev; - -int i8042_kbd_init(void); -int i8042_tstc(struct stdio_dev *dev); -int i8042_getc(struct stdio_dev *dev); - #endif /* _I8042_H_ */ |