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>
14 #include <linux/module.h>
16 static struct rc_map_table avermedia_a16d
[] = {
28 { 0x12, KEY_SUBTITLE
},
33 { 0x11, KEY_CHANNELDOWN
},
34 { 0x31, KEY_CHANNELUP
},
36 { 0x1e, KEY_VOLUMEDOWN
},
37 { 0x3e, KEY_VOLUMEUP
},
45 { 0x0e, KEY_FASTFORWARD
},
53 static struct rc_map_list avermedia_a16d_map
= {
55 .scan
= avermedia_a16d
,
56 .size
= ARRAY_SIZE(avermedia_a16d
),
57 .rc_type
= RC_TYPE_UNKNOWN
, /* Legacy IR type */
58 .name
= RC_MAP_AVERMEDIA_A16D
,
62 static int __init
init_rc_map_avermedia_a16d(void)
64 return rc_map_register(&avermedia_a16d_map
);
67 static void __exit
exit_rc_map_avermedia_a16d(void)
69 rc_map_unregister(&avermedia_a16d_map
);
72 module_init(init_rc_map_avermedia_a16d
)
73 module_exit(exit_rc_map_avermedia_a16d
)
75 MODULE_LICENSE("GPL");
76 MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@redhat.com>");