// SPDX-License-Identifier: GPL-2.0+ // behold.h - Keytable for behold Remote Controller // // keymap imported from ir-keymaps.c // // Copyright (c) 2010 by Mauro Carvalho Chehab #include <media/rc-map.h> #include <linux/module.h> /* * Igor Kuznetsov <[email protected]> * Andrey J. Melnikov <[email protected]> * * Keytable is used by BeholdTV 60x series, M6 series at * least, and probably other cards too. * The "ascii-art picture" below (in comments, first row * is the keycode in hex, and subsequent row(s) shows * the button labels (several variants when appropriate) * helps to decide which keycodes to assign to the buttons. */ static struct rc_map_table behold[] = …; static struct rc_map_list behold_map = …; static int __init init_rc_map_behold(void) { … } static void __exit exit_rc_map_behold(void) { … } module_init(…) … module_exit(…) MODULE_LICENSE(…) …; MODULE_AUTHOR(…) …; MODULE_DESCRIPTION(…) …;