summaryrefslogtreecommitdiffstats
path: root/include/input
diff options
context:
space:
mode:
authorSascha Hauer <s.hauer@pengutronix.de>2016-01-13 10:18:03 +0100
committerSascha Hauer <s.hauer@pengutronix.de>2016-01-13 16:23:22 +0100
commitcfe4e61df18748001aedc201a0a35652f946802e (patch)
tree5ebc5e41943e1862f8d4e253b92f8a3674b0ad56 /include/input
parent2d43dd7697199dc6fc16daa2669878d331cba3b6 (diff)
downloadbarebox-cfe4e61df18748001aedc201a0a35652f946802e.tar.gz
barebox-cfe4e61df18748001aedc201a0a35652f946802e.tar.xz
keymap: Add keymap for keys with shift pressed
When converting keys to ascii for the console we also need the keymap with shift pressed. Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'include/input')
-rw-r--r--include/input/keyboard.h1
1 files changed, 1 insertions, 0 deletions
diff --git a/include/input/keyboard.h b/include/input/keyboard.h
index dd04690304..d1f5bf553a 100644
--- a/include/input/keyboard.h
+++ b/include/input/keyboard.h
@@ -6,5 +6,6 @@
#define NR_KEYS 256
extern uint8_t keycode_bb_keys[NR_KEYS];
+extern uint8_t keycode_bb_shift_keys[NR_KEYS];
#endif