// SPDX-License-Identifier: GPL-2.0+ // Copyright (c) 2020 Christian Hewitt #include <media/rc-map.h> #include <linux/module.h> /* * KHAMSIN is an IR/Bluetooth RCU supplied with the SmartLabs * SML-5442TW DVB-S/VOD box. The RCU has separate IR (TV) and * BT (STB) modes. This keymap suppors the IR controls. */ static struct rc_map_table khamsin[] = …; static struct rc_map_list khamsin_map = …; static int __init init_rc_map_khamsin(void) { … } static void __exit exit_rc_map_khamsin(void) { … } module_init(…) … module_exit(…) MODULE_LICENSE(…) …; MODULE_AUTHOR(…) …; MODULE_DESCRIPTION(…) …;