// SPDX-License-Identifier: GPL-2.0+ // manli.h - Keytable for manli Remote Controller // // keymap imported from ir-keymaps.c // // Copyright (c) 2010 by Mauro Carvalho Chehab #include <media/rc-map.h> #include <linux/module.h> /* Michael Tokarev <[email protected]> keytable is used by MANLI MTV00[0x0c] and BeholdTV 40[13] 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 manli[] = …; static struct rc_map_list manli_map = …; static int __init init_rc_map_manli(void) { … } static void __exit exit_rc_map_manli(void) { … } module_init(…) … module_exit(…) MODULE_LICENSE(…) …; MODULE_AUTHOR(…) …; MODULE_DESCRIPTION(…) …;