// SPDX-License-Identifier: GPL-2.0-or-later /* rc5-imon-pad.c - Keytable for SoundGraph iMON PAD and Antec Veris * RM-200 Remote Control * * Copyright (c) 2010 by Jarod Wilson <[email protected]> */ #include <media/rc-map.h> #include <linux/module.h> /* * standard imon remote key table, which isn't really entirely * "standard", as different receivers decode the same key on the * same remote to different hex codes, and the silkscreened names * vary a bit between the SoundGraph and Antec remotes... ugh. */ static struct rc_map_table imon_pad[] = …; static struct rc_map_list imon_pad_map = …; static int __init init_rc_map_imon_pad(void) { … } static void __exit exit_rc_map_imon_pad(void) { … } module_init(…) … module_exit(…) MODULE_LICENSE(…) …; MODULE_AUTHOR(…) …; MODULE_DESCRIPTION(…) …;