// SPDX-License-Identifier: GPL-2.0+ // avermedia-m135a.c - Keytable for Avermedia M135A Remote Controllers // // Copyright (c) 2010 by Mauro Carvalho Chehab // Copyright (c) 2010 by Herton Ronaldo Krzesinski <[email protected]> #include <media/rc-map.h> #include <linux/module.h> /* * Avermedia M135A with RM-JX and RM-K6 remote controls * * On Avermedia M135A with IR model RM-JX, the same codes exist on both * Positivo (BR) and original IR, initial version and remote control codes * added by Mauro Carvalho Chehab <[email protected]> * * Positivo also ships Avermedia M135A with model RM-K6, extra control * codes added by Herton Ronaldo Krzesinski <[email protected]> */ static struct rc_map_table avermedia_m135a[] = …; static struct rc_map_list avermedia_m135a_map = …; static int __init init_rc_map_avermedia_m135a(void) { … } static void __exit exit_rc_map_avermedia_m135a(void) { … } module_init(…) … module_exit(…) MODULE_LICENSE(…) …; MODULE_AUTHOR(…) …; MODULE_DESCRIPTION(…) …;