// SPDX-License-Identifier: GPL-2.0+ // rc-hauppauge.c - Keytable for Hauppauge Remote Controllers // // keymap imported from ir-keymaps.c // // This map currently contains the code for four different RCs: // - New Hauppauge Gray; // - Old Hauppauge Gray (with a golden screen for media keys); // - Hauppauge Black; // - DSR-0112 remote bundled with Haupauge MiniStick. // // Copyright (c) 2010-2011 by Mauro Carvalho Chehab #include <media/rc-map.h> #include <linux/module.h> /* * Hauppauge:the newer, gray remotes (seems there are multiple * slightly different versions), shipped with cx88+ivtv cards. * * This table contains the complete RC5 code, instead of just the data part */ static struct rc_map_table rc5_hauppauge_new[] = …; static struct rc_map_list rc5_hauppauge_new_map = …; static int __init init_rc_map_rc5_hauppauge_new(void) { … } static void __exit exit_rc_map_rc5_hauppauge_new(void) { … } module_init(…) … module_exit(…) MODULE_LICENSE(…) …; MODULE_AUTHOR(…) …; MODULE_DESCRIPTION(…) …;