// SPDX-License-Identifier: GPL-2.0+ // budget-ci-old.h - Keytable for budget_ci_old Remote Controller // // keymap imported from ir-keymaps.c // // Copyright (c) 2010 by Mauro Carvalho Chehab #include <media/rc-map.h> #include <linux/module.h> /* * From reading the following remotes: * Zenith Universal 7 / TV Mode 807 / VCR Mode 837 * Hauppauge (from NOVA-CI-s box product) * This is a "middle of the road" approach, differences are noted */ static struct rc_map_table budget_ci_old[] = …; static struct rc_map_list budget_ci_old_map = …; static int __init init_rc_map_budget_ci_old(void) { … } static void __exit exit_rc_map_budget_ci_old(void) { … } module_init(…) … module_exit(…) MODULE_LICENSE(…) …; MODULE_AUTHOR(…) …; MODULE_DESCRIPTION(…) …;