diff options
Diffstat (limited to 'include/media/keycodes/empty.h')
-rw-r--r-- | include/media/keycodes/empty.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/include/media/keycodes/empty.h b/include/media/keycodes/empty.h new file mode 100644 index 000000000000..aea866c42b22 --- /dev/null +++ b/include/media/keycodes/empty.h | |||
@@ -0,0 +1,20 @@ | |||
1 | /* empty.h - Keytable for empty Remote Controller | ||
2 | * | ||
3 | * Imported from ir-keymaps.c | ||
4 | * | ||
5 | * This program is free software; you can redistribute it and/or modify | ||
6 | * it under the terms of the GNU General Public License as published by | ||
7 | * the Free Software Foundation; either version 2 of the License, or | ||
8 | * (at your option) any later version. | ||
9 | */ | ||
10 | |||
11 | /* empty keytable, can be used as placeholder for not-yet created keytables */ | ||
12 | |||
13 | #ifdef IR_KEYMAPS | ||
14 | static struct ir_scancode empty[] = { | ||
15 | { 0x2a, KEY_COFFEE }, | ||
16 | }; | ||
17 | DEFINE_LEGACY_IR_KEYTABLE(empty); | ||
18 | #else | ||
19 | DECLARE_IR_KEYTABLE(empty); | ||
20 | #endif | ||