// SPDX-License-Identifier: GPL-2.0+ // msi-tvanywhere.h - Keytable for msi_tvanywhere Remote Controller // // keymap imported from ir-keymaps.c // // Copyright (c) 2010 by Mauro Carvalho Chehab #include <media/rc-map.h> #include <linux/module.h> /* MSI TV@nywhere MASTER remote */ static struct rc_map_table msi_tvanywhere[] = …; static struct rc_map_list msi_tvanywhere_map = …; static int __init init_rc_map_msi_tvanywhere(void) { … } static void __exit exit_rc_map_msi_tvanywhere(void) { … } module_init(…) … module_exit(…) MODULE_LICENSE(…) …; MODULE_AUTHOR(…) …; MODULE_DESCRIPTION(…) …;