1
2
3
4
5
6
7
8
9
10
11
12
13#include <media/rc-map.h>
14#include <linux/module.h>
15
16
17
18
19
20static struct rc_map_table ati_tv_wonder_hd_600[] = {
21 { 0x00, KEY_RECORD},
22 { 0x01, KEY_PLAYPAUSE},
23 { 0x02, KEY_STOP},
24 { 0x03, KEY_POWER},
25 { 0x04, KEY_PREVIOUS},
26 { 0x05, KEY_REWIND},
27 { 0x06, KEY_FORWARD},
28 { 0x07, KEY_NEXT},
29 { 0x08, KEY_EPG},
30 { 0x09, KEY_HOME},
31 { 0x0a, KEY_MENU},
32 { 0x0b, KEY_CHANNELUP},
33 { 0x0c, KEY_BACK},
34 { 0x0d, KEY_UP},
35 { 0x0e, KEY_INFO},
36 { 0x0f, KEY_CHANNELDOWN},
37 { 0x10, KEY_LEFT},
38 { 0x11, KEY_SELECT},
39 { 0x12, KEY_RIGHT},
40 { 0x13, KEY_VOLUMEUP},
41 { 0x14, KEY_LAST},
42 { 0x15, KEY_DOWN},
43 { 0x16, KEY_MUTE},
44 { 0x17, KEY_VOLUMEDOWN},
45};
46
47static struct rc_map_list ati_tv_wonder_hd_600_map = {
48 .map = {
49 .scan = ati_tv_wonder_hd_600,
50 .size = ARRAY_SIZE(ati_tv_wonder_hd_600),
51 .rc_type = RC_TYPE_UNKNOWN,
52 .name = RC_MAP_ATI_TV_WONDER_HD_600,
53 }
54};
55
56static int __init init_rc_map_ati_tv_wonder_hd_600(void)
57{
58 return rc_map_register(&ati_tv_wonder_hd_600_map);
59}
60
61static void __exit exit_rc_map_ati_tv_wonder_hd_600(void)
62{
63 rc_map_unregister(&ati_tv_wonder_hd_600_map);
64}
65
66module_init(init_rc_map_ati_tv_wonder_hd_600)
67module_exit(exit_rc_map_ati_tv_wonder_hd_600)
68
69MODULE_LICENSE("GPL");
70MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@redhat.com>");
71