diff options
| author | Simon Glass <[email protected]> | 2012-04-17 09:01:30 +0000 |
|---|---|---|
| committer | Albert ARIBAUD <[email protected]> | 2012-05-15 08:31:39 +0200 |
| commit | 9bc590e5119f38fd822dedb16e3e0e2363f09756 (patch) | |
| tree | 96fdd4bc490dd4e528d56b19fec3b6dbb08be2be /drivers/input/Makefile | |
| parent | d81e270d95da63e1ff5147dd9ba0a9d99e8974af (diff) | |
input: Add generic keyboard input handler
Add a module which understands converting key codes (or scan codes)
to ASCII characters. It includes FIFO support and can call back to
drivers to read new characters when its FIFO is empty.
Keycode maps are provided for un-modified, shift and ctrl keys.
The plan is to use this module where such mapping is required.
Signed-off-by: Simon Glass <[email protected]>
Signed-off-by: Tom Warren <[email protected]>
Diffstat (limited to 'drivers/input/Makefile')
| -rw-r--r-- | drivers/input/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/input/Makefile b/drivers/input/Makefile index 1f4dad35b53..d06acb9c95b 100644 --- a/drivers/input/Makefile +++ b/drivers/input/Makefile @@ -30,6 +30,7 @@ ifdef CONFIG_PS2KBD COBJS-y += keyboard.o pc_keyb.o COBJS-$(CONFIG_PS2MULT) += ps2mult.o ps2ser.o endif +COBJS-y += input.o COBJS := $(COBJS-y) SRCS := $(COBJS:.o=.c) |
