diff options
Diffstat (limited to 'include/linux')
| -rw-r--r-- | include/linux/input.h | 9 | ||||
| -rw-r--r-- | include/linux/kbd_kern.h | 2 | ||||
| -rw-r--r-- | include/linux/keyboard.h | 13 |
3 files changed, 24 insertions, 0 deletions
diff --git a/include/linux/input.h b/include/linux/input.h index 393da04f4301..b0e612dda0cf 100644 --- a/include/linux/input.h +++ b/include/linux/input.h | |||
| @@ -512,6 +512,15 @@ struct input_absinfo { | |||
| 512 | #define KEY_FN_S 0x1e3 | 512 | #define KEY_FN_S 0x1e3 |
| 513 | #define KEY_FN_B 0x1e4 | 513 | #define KEY_FN_B 0x1e4 |
| 514 | 514 | ||
| 515 | #define KEY_BRL_DOT1 0x1f1 | ||
| 516 | #define KEY_BRL_DOT2 0x1f2 | ||
| 517 | #define KEY_BRL_DOT3 0x1f3 | ||
| 518 | #define KEY_BRL_DOT4 0x1f4 | ||
| 519 | #define KEY_BRL_DOT5 0x1f5 | ||
| 520 | #define KEY_BRL_DOT6 0x1f6 | ||
| 521 | #define KEY_BRL_DOT7 0x1f7 | ||
| 522 | #define KEY_BRL_DOT8 0x1f8 | ||
| 523 | |||
| 515 | /* We avoid low common keys in module aliases so they don't get huge. */ | 524 | /* We avoid low common keys in module aliases so they don't get huge. */ |
| 516 | #define KEY_MIN_INTERESTING KEY_MUTE | 525 | #define KEY_MIN_INTERESTING KEY_MUTE |
| 517 | #define KEY_MAX 0x1ff | 526 | #define KEY_MAX 0x1ff |
diff --git a/include/linux/kbd_kern.h b/include/linux/kbd_kern.h index e87c32a5c86a..4eb851ece080 100644 --- a/include/linux/kbd_kern.h +++ b/include/linux/kbd_kern.h | |||
| @@ -135,6 +135,8 @@ static inline void chg_vc_kbd_led(struct kbd_struct * kbd, int flag) | |||
| 135 | 135 | ||
| 136 | #define U(x) ((x) ^ 0xf000) | 136 | #define U(x) ((x) ^ 0xf000) |
| 137 | 137 | ||
| 138 | #define BRL_UC_ROW 0x2800 | ||
| 139 | |||
| 138 | /* keyboard.c */ | 140 | /* keyboard.c */ |
| 139 | 141 | ||
| 140 | struct console; | 142 | struct console; |
diff --git a/include/linux/keyboard.h b/include/linux/keyboard.h index 08488042d74a..de76843bbe8a 100644 --- a/include/linux/keyboard.h +++ b/include/linux/keyboard.h | |||
| @@ -44,6 +44,7 @@ extern unsigned short plain_map[NR_KEYS]; | |||
| 44 | #define KT_ASCII 9 | 44 | #define KT_ASCII 9 |
| 45 | #define KT_LOCK 10 | 45 | #define KT_LOCK 10 |
| 46 | #define KT_SLOCK 12 | 46 | #define KT_SLOCK 12 |
| 47 | #define KT_BRL 14 | ||
| 47 | 48 | ||
| 48 | #define K(t,v) (((t)<<8)|(v)) | 49 | #define K(t,v) (((t)<<8)|(v)) |
| 49 | #define KTYP(x) ((x) >> 8) | 50 | #define KTYP(x) ((x) >> 8) |
| @@ -427,5 +428,17 @@ extern unsigned short plain_map[NR_KEYS]; | |||
| 427 | 428 | ||
| 428 | #define NR_LOCK 8 | 429 | #define NR_LOCK 8 |
| 429 | 430 | ||
| 431 | #define K_BRL_BLANK K(KT_BRL, 0) | ||
| 432 | #define K_BRL_DOT1 K(KT_BRL, 1) | ||
| 433 | #define K_BRL_DOT2 K(KT_BRL, 2) | ||
| 434 | #define K_BRL_DOT3 K(KT_BRL, 3) | ||
| 435 | #define K_BRL_DOT4 K(KT_BRL, 4) | ||
| 436 | #define K_BRL_DOT5 K(KT_BRL, 5) | ||
| 437 | #define K_BRL_DOT6 K(KT_BRL, 6) | ||
| 438 | #define K_BRL_DOT7 K(KT_BRL, 7) | ||
| 439 | #define K_BRL_DOT8 K(KT_BRL, 8) | ||
| 440 | |||
| 441 | #define NR_BRL 9 | ||
| 442 | |||
| 430 | #define MAX_DIACR 256 | 443 | #define MAX_DIACR 256 |
| 431 | #endif | 444 | #endif |
