1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22#include <media/rc-map.h>
23#include <linux/module.h>
24
25
26
27
28
29static struct rc_map_table terratec_slim_2[] = {
30 { 0x8001, KEY_MUTE },
31 { 0x8002, KEY_VOLUMEDOWN },
32 { 0x8003, KEY_CHANNELDOWN },
33 { 0x8004, KEY_1 },
34 { 0x8005, KEY_2 },
35 { 0x8006, KEY_3 },
36 { 0x8007, KEY_4 },
37 { 0x8008, KEY_5 },
38 { 0x8009, KEY_6 },
39 { 0x800a, KEY_7 },
40 { 0x800c, KEY_ZOOM },
41 { 0x800d, KEY_0 },
42 { 0x800e, KEY_AGAIN },
43 { 0x8012, KEY_POWER2 },
44 { 0x801a, KEY_VOLUMEUP },
45 { 0x801b, KEY_8 },
46 { 0x801e, KEY_CHANNELUP },
47 { 0x801f, KEY_9 },
48};
49
50static struct rc_map_list terratec_slim_2_map = {
51 .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,
56 }
57};
58
59static int __init init_rc_map_terratec_slim_2(void)
60{
61 return rc_map_register(&terratec_slim_2_map);
62}
63
64static void __exit exit_rc_map_terratec_slim_2(void)
65{
66 rc_map_unregister(&terratec_slim_2_map);
67}
68
69module_init(init_rc_map_terratec_slim_2)
70module_exit(exit_rc_map_terratec_slim_2)
71
72MODULE_LICENSE("GPL");
73MODULE_AUTHOR("Antti Palosaari <crope@iki.fi>");
74