// SPDX-License-Identifier: GPL-2.0-or-later /* rc-dvbsky.c - Keytable for DVBSky Remote Controllers * * keymap imported from ir-keymaps.c * * Copyright (c) 2010-2012 by Nibble Max <[email protected]> */ #include <media/rc-map.h> #include <linux/module.h> /* * This table contains the complete RC5 code, instead of just the data part */ static struct rc_map_table rc5_dvbsky[] = …; static struct rc_map_list rc5_dvbsky_map = …; static int __init init_rc_map_rc5_dvbsky(void) { … } static void __exit exit_rc_map_rc5_dvbsky(void) { … } module_init(…) … module_exit(…) MODULE_LICENSE(…) …; MODULE_AUTHOR(…) …; MODULE_DESCRIPTION(…) …;