// SPDX-License-Identifier: GPL-2.0+ // behold-columbus.h - Keytable for behold_columbus Remote Controller // // keymap imported from ir-keymaps.c // // Copyright (c) 2010 by Mauro Carvalho Chehab #include <media/rc-map.h> #include <linux/module.h> /* Beholder Intl. Ltd. 2008 * Dmitry Belimov [email protected] * Keytable is used by BeholdTV Columbus * 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_columbus[] = …; static struct rc_map_list behold_columbus_map = …; static int __init init_rc_map_behold_columbus(void) { … } static void __exit exit_rc_map_behold_columbus(void) { … } module_init(…) … module_exit(…) MODULE_LICENSE(…) …; MODULE_AUTHOR(…) …; MODULE_DESCRIPTION(…) …;