2 * TerraTec remote controller keytable
4 * Copyright (C) 2011 Martin Groszhauser <mgroszhauser@gmail.com>
5 * Copyright (C) 2011 Antti Palosaari <crope@iki.fi>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, write to the Free Software Foundation, Inc.,
19 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
22 #include <media/rc-map.h>
23 #include <linux/module.h>
26 * TerraTec slim remote, 6 rows, 3 columns.
27 * Keytable from Martin Groszhauser <mgroszhauser@gmail.com>
29 static struct rc_map_table terratec_slim_2
[] = {
30 { 0x8001, KEY_MUTE
}, /* MUTE */
31 { 0x8002, KEY_VOLUMEDOWN
},
32 { 0x8003, KEY_CHANNELDOWN
},
40 { 0x800c, KEY_ZOOM
}, /* [fullscreen] */
42 { 0x800e, KEY_AGAIN
}, /* [two arrows forming a circle] */
43 { 0x8012, KEY_POWER2
}, /* [red power button] */
44 { 0x801a, KEY_VOLUMEUP
},
46 { 0x801e, KEY_CHANNELUP
},
50 static struct rc_map_list terratec_slim_2_map
= {
52 .scan
= terratec_slim_2
,
53 .size
= ARRAY_SIZE(terratec_slim_2
),
54 .rc_type
= RC_TYPE_NEC
,
55 .name
= RC_MAP_TERRATEC_SLIM_2
,
59 static int __init
init_rc_map_terratec_slim_2(void)
61 return rc_map_register(&terratec_slim_2_map
);
64 static void __exit
exit_rc_map_terratec_slim_2(void)
66 rc_map_unregister(&terratec_slim_2_map
);
69 module_init(init_rc_map_terratec_slim_2
)
70 module_exit(exit_rc_map_terratec_slim_2
)
72 MODULE_LICENSE("GPL");
73 MODULE_AUTHOR("Antti Palosaari <crope@iki.fi>");