.. | .. |
---|
| 1 | +// SPDX-License-Identifier: GPL-2.0-or-later |
---|
1 | 2 | /* keytable for Terratec Cinergy S2 HD Remote Controller |
---|
2 | | - * |
---|
3 | | - * This program is free software; you can redistribute it and/or modify |
---|
4 | | - * it under the terms of the GNU General Public License as published by |
---|
5 | | - * the Free Software Foundation; either version 2 of the License, or |
---|
6 | | - * (at your option) any later version. |
---|
7 | 3 | */ |
---|
8 | 4 | |
---|
9 | 5 | #include <media/rc-map.h> |
---|
.. | .. |
---|
46 | 42 | { 0x2f, KEY_UP}, |
---|
47 | 43 | { 0x30, KEY_EPG}, |
---|
48 | 44 | { 0x32, KEY_VIDEO}, /* A<=>B */ |
---|
49 | | - { 0x33, KEY_0}, |
---|
| 45 | + { 0x33, KEY_NUMERIC_0}, |
---|
50 | 46 | { 0x34, KEY_VCR}, /* AV */ |
---|
51 | | - { 0x35, KEY_9}, |
---|
52 | | - { 0x36, KEY_8}, |
---|
53 | | - { 0x37, KEY_7}, |
---|
54 | | - { 0x38, KEY_6}, |
---|
55 | | - { 0x39, KEY_5}, |
---|
56 | | - { 0x3a, KEY_4}, |
---|
57 | | - { 0x3b, KEY_3}, |
---|
58 | | - { 0x3c, KEY_2}, |
---|
59 | | - { 0x3d, KEY_1}, |
---|
| 47 | + { 0x35, KEY_NUMERIC_9}, |
---|
| 48 | + { 0x36, KEY_NUMERIC_8}, |
---|
| 49 | + { 0x37, KEY_NUMERIC_7}, |
---|
| 50 | + { 0x38, KEY_NUMERIC_6}, |
---|
| 51 | + { 0x39, KEY_NUMERIC_5}, |
---|
| 52 | + { 0x3a, KEY_NUMERIC_4}, |
---|
| 53 | + { 0x3b, KEY_NUMERIC_3}, |
---|
| 54 | + { 0x3c, KEY_NUMERIC_2}, |
---|
| 55 | + { 0x3d, KEY_NUMERIC_1}, |
---|
60 | 56 | { 0x3e, KEY_POWER}, |
---|
61 | 57 | |
---|
62 | 58 | }; |
---|