// SPDX-License-Identifier: GPL-2.0+ // videomate-s350.h - Keytable for videomate_s350 Remote Controller // // keymap imported from ir-keymaps.c // // Copyright (c) 2010 by Mauro Carvalho Chehab #include <media/rc-map.h> #include <linux/module.h> static struct rc_map_table videomate_s350[] = …; static struct rc_map_list videomate_s350_map = …; static int __init init_rc_map_videomate_s350(void) { … } static void __exit exit_rc_map_videomate_s350(void) { … } module_init(…) … module_exit(…) MODULE_LICENSE(…) …; MODULE_AUTHOR(…) …; MODULE_DESCRIPTION(…) …;