// SPDX-License-Identifier: GPL-2.0+ // asus-pc39.h - Keytable for asus_pc39 Remote Controller // // keymap imported from ir-keymaps.c // // Copyright (c) 2010 by Mauro Carvalho Chehab #include <media/rc-map.h> #include <linux/module.h> /* * Marc Fargas <[email protected]> * this is the remote control that comes with the asus p7131 * which has a label saying is "Model PC-39" */ static struct rc_map_table asus_pc39[] = …; static struct rc_map_list asus_pc39_map = …; static int __init init_rc_map_asus_pc39(void) { … } static void __exit exit_rc_map_asus_pc39(void) { … } module_init(…) … module_exit(…) MODULE_LICENSE(…) …; MODULE_AUTHOR(…) …; MODULE_DESCRIPTION(…) …;