// SPDX-License-Identifier: GPL-2.0+ // cinergy-1400.h - Keytable for cinergy_1400 Remote Controller // // keymap imported from ir-keymaps.c // // Copyright (c) 2010 by Mauro Carvalho Chehab #include <media/rc-map.h> #include <linux/module.h> /* Cinergy 1400 DVB-T */ static struct rc_map_table cinergy_1400[] = …; static struct rc_map_list cinergy_1400_map = …; static int __init init_rc_map_cinergy_1400(void) { … } static void __exit exit_rc_map_cinergy_1400(void) { … } module_init(…) … module_exit(…) MODULE_LICENSE(…) …; MODULE_AUTHOR(…) …; MODULE_DESCRIPTION(…) …;