// SPDX-License-Identifier: GPL-2.0+ /* * Copyright (c) 2021 Emanuel Strobel <[email protected]> */ #include <media/rc-map.h> #include <linux/module.h> /* * Keytable for Dreambox RC10/RC0 and RC20/RC-BT remote controls * * Keys that are not IR addressable: * * // DREAM switches to STB control mode * // TV switches to TV control mode * // MODE toggles STB/TV/BT control modes * */ static struct rc_map_table dreambox[] = …; static struct rc_map_list dreambox_map = …; static int __init init_rc_map_dreambox(void) { … } static void __exit exit_rc_map_dreambox(void) { … } module_init(…) … module_exit(…) MODULE_LICENSE(…) …; MODULE_AUTHOR(…) …; MODULE_DESCRIPTION(…) …;