| /* avertv-303.h - Keytable for avertv_303 Remote Controller |
| * keymap imported from ir-keymaps.c |
| * Copyright (c) 2010 by Mauro Carvalho Chehab <mchehab@redhat.com> |
| * This program is free software; you can redistribute it and/or modify |
| * it under the terms of the GNU General Public License as published by |
| * the Free Software Foundation; either version 2 of the License, or |
| * (at your option) any later version. |
| #include <media/rc-map.h> |
| /* AVERTV STUDIO 303 Remote */ |
| static struct rc_map_table avertv_303[] = { |
| static struct rc_map_list avertv_303_map = { |
| .size = ARRAY_SIZE(avertv_303), |
| .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */ |
| .name = RC_MAP_AVERTV_303, |
| static int __init init_rc_map_avertv_303(void) |
| return rc_map_register(&avertv_303_map); |
| static void __exit exit_rc_map_avertv_303(void) |
| rc_map_unregister(&avertv_303_map); |
| module_init(init_rc_map_avertv_303) |
| module_exit(exit_rc_map_avertv_303) |
| MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@redhat.com>"); |