1 // SPDX-License-Identifier: GPL-2.0+
2 // ati-tv-wonder-hd-600.h - Keytable for ati_tv_wonder_hd_600 Remote Controller
4 // keymap imported from ir-keymaps.c
6 // Copyright (c) 2010 by Mauro Carvalho Chehab
8 #include <media/rc-map.h>
9 #include <linux/module.h>
11 /* ATI TV Wonder HD 600 USB
12 Devin Heitmueller <devin.heitmueller@gmail.com>
15 static struct rc_map_table ati_tv_wonder_hd_600
[] = {
16 { 0x00, KEY_RECORD
}, /* Row 1 */
17 { 0x01, KEY_PLAYPAUSE
},
20 { 0x04, KEY_PREVIOUS
}, /* Row 2 */
24 { 0x08, KEY_EPG
}, /* Row 3 */
27 { 0x0b, KEY_CHANNELUP
},
28 { 0x0c, KEY_BACK
}, /* Row 4 */
31 { 0x0f, KEY_CHANNELDOWN
},
32 { 0x10, KEY_LEFT
}, /* Row 5 */
35 { 0x13, KEY_VOLUMEUP
},
36 { 0x14, KEY_LAST
}, /* Row 6 */
39 { 0x17, KEY_VOLUMEDOWN
},
42 static struct rc_map_list ati_tv_wonder_hd_600_map
= {
44 .scan
= ati_tv_wonder_hd_600
,
45 .size
= ARRAY_SIZE(ati_tv_wonder_hd_600
),
46 .rc_proto
= RC_PROTO_UNKNOWN
, /* Legacy IR type */
47 .name
= RC_MAP_ATI_TV_WONDER_HD_600
,
51 static int __init
init_rc_map_ati_tv_wonder_hd_600(void)
53 return rc_map_register(&ati_tv_wonder_hd_600_map
);
56 static void __exit
exit_rc_map_ati_tv_wonder_hd_600(void)
58 rc_map_unregister(&ati_tv_wonder_hd_600_map
);
61 module_init(init_rc_map_ati_tv_wonder_hd_600
)
62 module_exit(exit_rc_map_ati_tv_wonder_hd_600
)
64 MODULE_LICENSE("GPL");
65 MODULE_AUTHOR("Mauro Carvalho Chehab");