1 /* avertv-303.h - Keytable for avertv_303 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 /* AVERTV STUDIO 303 Remote */
17 static struct rc_map_table avertv_303
[] = {
37 { 0x16, KEY_SUBTITLE
},
43 { 0x3e, KEY_SHUFFLE
},
62 static struct rc_map_list avertv_303_map
= {
65 .size
= ARRAY_SIZE(avertv_303
),
66 .rc_type
= RC_TYPE_UNKNOWN
, /* Legacy IR type */
67 .name
= RC_MAP_AVERTV_303
,
71 static int __init
init_rc_map_avertv_303(void)
73 return rc_map_register(&avertv_303_map
);
76 static void __exit
exit_rc_map_avertv_303(void)
78 rc_map_unregister(&avertv_303_map
);
81 module_init(init_rc_map_avertv_303
)
82 module_exit(exit_rc_map_avertv_303
)
84 MODULE_LICENSE("GPL");
85 MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@redhat.com>");