// SPDX-License-Identifier: GPL-2.0+ // genius-tvgo-a11mce.h - Keytable for genius_tvgo_a11mce Remote Controller // // keymap imported from ir-keymaps.c // // Copyright (c) 2010 by Mauro Carvalho Chehab #include <media/rc-map.h> #include <linux/module.h> /* * Remote control for the Genius TVGO A11MCE * Adrian Pardini <[email protected]> */ static struct rc_map_table genius_tvgo_a11mce[] = …; static struct rc_map_list genius_tvgo_a11mce_map = …; static int __init init_rc_map_genius_tvgo_a11mce(void) { … } static void __exit exit_rc_map_genius_tvgo_a11mce(void) { … } module_init(…) … module_exit(…) MODULE_LICENSE(…) …; MODULE_AUTHOR(…) …; MODULE_DESCRIPTION(…) …;