| /* kaiomy.h - Keytable for kaiomy 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> |
| #include <linux/module.h> |
| Mauro Carvalho Chehab <mchehab@infradead.org> |
| static struct rc_map_table kaiomy[] = { |
| { 0x07, KEY_CHANNELDOWN}, |
| static struct rc_map_list kaiomy_map = { |
| .size = ARRAY_SIZE(kaiomy), |
| .rc_type = RC_TYPE_UNKNOWN, /* Legacy IR type */ |
| static int __init init_rc_map_kaiomy(void) |
| return rc_map_register(&kaiomy_map); |
| static void __exit exit_rc_map_kaiomy(void) |
| rc_map_unregister(&kaiomy_map); |
| module_init(init_rc_map_kaiomy) |
| module_exit(exit_rc_map_kaiomy) |
| MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@redhat.com>"); |