summaryrefslogtreecommitdiff
path: root/include/tegra-kbc.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/tegra-kbc.h')
-rwxr-xr-xinclude/tegra-kbc.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/include/tegra-kbc.h b/include/tegra-kbc.h
index ddc6379cc3..fd1fe3cdcb 100755
--- a/include/tegra-kbc.h
+++ b/include/tegra-kbc.h
@@ -27,10 +27,10 @@ enum {
struct tegra_keyboard_config {
/* keycode tables, one for each row/col position */
- int plain_keycode[KBC_KEY_COUNT]; /* when no Shift or Fn */
- int shift_keycode[KBC_KEY_COUNT]; /* Shift modifier key is pressed */
- int fn_keycode[KBC_KEY_COUNT]; /* Fn modifier key is pressed */
- int ctrl_keycode[KBC_KEY_COUNT]; /* Ctrl modifier key is pressed */
+ u8 plain_keycode[KBC_KEY_COUNT]; /* when no Shift or Fn */
+ u8 shift_keycode[KBC_KEY_COUNT]; /* Shift modifier key is pressed */
+ u8 fn_keycode[KBC_KEY_COUNT]; /* Fn modifier key is pressed */
+ u8 ctrl_keycode[KBC_KEY_COUNT]; /* Ctrl modifier key is pressed */
};
struct kbc_tegra {