// SPDX-License-Identifier: GPL-2.0+ // // Copyright (C) 2018 Sean Young <[email protected]> #include <media/rc-map.h> #include <linux/module.h> // // Note that this remote has a stick which its own IR protocol, // with 16 directions. This is supported by the imon_rsc BPF decoder // in v4l-utils. // static struct rc_map_table imon_rsc[] = …; static struct rc_map_list imon_rsc_map = …; static int __init init_rc_map_imon_rsc(void) { … } static void __exit exit_rc_map_imon_rsc(void) { … } module_init(…) … module_exit(…) MODULE_LICENSE(…) …; MODULE_AUTHOR(…) …; MODULE_DESCRIPTION(…) …;