1 /* ati-tv-wonder-hd-600.h - Keytable for ati_tv_wonder_hd_600 Remote Controller
3 * keymap imported from ir-keymaps.c
5 * Copyright (c) 2010 by Mauro Carvalho Chehab <mchehab@redhat.com>
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.
13 #include <media/rc-map.h>
14 #include <linux/module.h>
16 /* ATI TV Wonder HD 600 USB
17 Devin Heitmueller <devin.heitmueller@gmail.com>
20 static struct rc_map_table ati_tv_wonder_hd_600
[] = {
21 { 0x00, KEY_RECORD
}, /* Row 1 */
22 { 0x01, KEY_PLAYPAUSE
},
25 { 0x04, KEY_PREVIOUS
}, /* Row 2 */
29 { 0x08, KEY_EPG
}, /* Row 3 */
32 { 0x0b, KEY_CHANNELUP
},
33 { 0x0c, KEY_BACK
}, /* Row 4 */
36 { 0x0f, KEY_CHANNELDOWN
},
37 { 0x10, KEY_LEFT
}, /* Row 5 */
40 { 0x13, KEY_VOLUMEUP
},
41 { 0x14, KEY_LAST
}, /* Row 6 */
44 { 0x17, KEY_VOLUMEDOWN
},
47 static struct rc_map_list ati_tv_wonder_hd_600_map
= {
49 .scan
= ati_tv_wonder_hd_600
,
50 .size
= ARRAY_SIZE(ati_tv_wonder_hd_600
),
51 .rc_type
= RC_TYPE_UNKNOWN
, /* Legacy IR type */
52 .name
= RC_MAP_ATI_TV_WONDER_HD_600
,
56 static int __init
init_rc_map_ati_tv_wonder_hd_600(void)
58 return rc_map_register(&ati_tv_wonder_hd_600_map
);
61 static void __exit
exit_rc_map_ati_tv_wonder_hd_600(void)
63 rc_map_unregister(&ati_tv_wonder_hd_600_map
);
66 module_init(init_rc_map_ati_tv_wonder_hd_600
)
67 module_exit(exit_rc_map_ati_tv_wonder_hd_600
)
69 MODULE_LICENSE("GPL");
70 MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@redhat.com>");