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>
14 #include <linux/module.h>
16 /* AVERTV STUDIO 303 Remote */
18 static struct rc_map_table avertv_303
[] = {
38 { 0x16, KEY_SUBTITLE
},
44 { 0x3e, KEY_SHUFFLE
},
63 static struct rc_map_list avertv_303_map
= {
66 .size
= ARRAY_SIZE(avertv_303
),
67 .rc_type
= RC_TYPE_UNKNOWN
, /* Legacy IR type */
68 .name
= RC_MAP_AVERTV_303
,
72 static int __init
init_rc_map_avertv_303(void)
74 return rc_map_register(&avertv_303_map
);
77 static void __exit
exit_rc_map_avertv_303(void)
79 rc_map_unregister(&avertv_303_map
);
82 module_init(init_rc_map_avertv_303
)
83 module_exit(exit_rc_map_avertv_303
)
85 MODULE_LICENSE("GPL");
86 MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@redhat.com>");