// SPDX-License-Identifier: GPL-2.0+ // // Copyright (C) 2019 Christian Hewitt <[email protected]> #include <media/rc-map.h> #include <linux/module.h> // // Keytable for the WeTek Play 2 STB remote control // static struct rc_map_table wetek_play2[] = …; static struct rc_map_list wetek_play2_map = …; static int __init init_rc_map_wetek_play2(void) { … } static void __exit exit_rc_map_wetek_play2(void) { … } module_init(…) … module_exit(…) MODULE_LICENSE(…) …; MODULE_AUTHOR(…) …; MODULE_DESCRIPTION(…) …;