1 /* avermedia-a16d.h - Keytable for avermedia_a16d 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>
15 static struct rc_map_table avermedia_a16d
[] = {
27 { 0x12, KEY_SUBTITLE
},
32 { 0x11, KEY_CHANNELDOWN
},
33 { 0x31, KEY_CHANNELUP
},
35 { 0x1e, KEY_VOLUMEDOWN
},
36 { 0x3e, KEY_VOLUMEUP
},
44 { 0x0e, KEY_FASTFORWARD
},
52 static struct rc_map_list avermedia_a16d_map
= {
54 .scan
= avermedia_a16d
,
55 .size
= ARRAY_SIZE(avermedia_a16d
),
56 .rc_type
= RC_TYPE_UNKNOWN
, /* Legacy IR type */
57 .name
= RC_MAP_AVERMEDIA_A16D
,
61 static int __init
init_rc_map_avermedia_a16d(void)
63 return rc_map_register(&avermedia_a16d_map
);
66 static void __exit
exit_rc_map_avermedia_a16d(void)
68 rc_map_unregister(&avermedia_a16d_map
);
71 module_init(init_rc_map_avermedia_a16d
)
72 module_exit(exit_rc_map_avermedia_a16d
)
74 MODULE_LICENSE("GPL");
75 MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@redhat.com>");