// SPDX-License-Identifier: GPL-2.0-or-later /* rc5-imon-mce.c - Keytable for Windows Media Center RC-6 remotes for use * with the SoundGraph iMON/Antec Veris hardware IR decoder * * Copyright (c) 2010 by Jarod Wilson <[email protected]> */ #include <media/rc-map.h> #include <linux/module.h> /* mce-mode imon mce remote key table */ static struct rc_map_table imon_mce[] = …; static struct rc_map_list imon_mce_map = …; static int __init init_rc_map_imon_mce(void) { … } static void __exit exit_rc_map_imon_mce(void) { … } module_init(…) … module_exit(…) MODULE_LICENSE(…) …; MODULE_AUTHOR(…) …; MODULE_DESCRIPTION(…) …;