// SPDX-License-Identifier: GPL-2.0-or-later /* videomate-k100.h - Keytable for videomate_k100 Remote Controller * * keymap imported from ir-keymaps.c * * Copyright (c) 2010 by Pavel Osnova <[email protected]> */ #include <media/rc-map.h> #include <linux/module.h> static struct rc_map_table videomate_k100[] = …; static struct rc_map_list videomate_k100_map = …; static int __init init_rc_map_videomate_k100(void) { … } static void __exit exit_rc_map_videomate_k100(void) { … } module_init(…) … module_exit(…) MODULE_LICENSE(…) …; MODULE_AUTHOR(…) …; MODULE_DESCRIPTION(…) …;