// SPDX-License-Identifier: GPL-2.0+ // rc-dvb0700-big.c - Keytable for devices in dvb0700 // // Copyright (c) 2010 by Mauro Carvalho Chehab // // TODO: This table is a real mess, as it merges RC codes from several // devices into a big table. It also has both RC-5 and NEC codes inside. // It should be broken into small tables, and the protocols should properly // be identificated. // // The table were imported from dib0700_devices.c. #include <media/rc-map.h> #include <linux/module.h> static struct rc_map_table dib0700_rc5_table[] = …; static struct rc_map_list dib0700_rc5_map = …; static int __init init_rc_map(void) { … } static void __exit exit_rc_map(void) { … } module_init(…) … module_exit(…) MODULE_LICENSE(…) …; MODULE_AUTHOR(…) …; MODULE_DESCRIPTION(…) …;