// SPDX-License-Identifier: GPL-2.0+ // pctv-sedna.h - Keytable for pctv_sedna Remote Controller // // keymap imported from ir-keymaps.c // // Copyright (c) 2010 by Mauro Carvalho Chehab #include <media/rc-map.h> #include <linux/module.h> /* Mapping for the 28 key remote control as seen at http://www.sednacomputer.com/photo/cardbus-tv.jpg Pavel Mihaylov <[email protected]> Also for the remote bundled with Kozumi KTV-01C card */ static struct rc_map_table pctv_sedna[] = …; static struct rc_map_list pctv_sedna_map = …; static int __init init_rc_map_pctv_sedna(void) { … } static void __exit exit_rc_map_pctv_sedna(void) { … } module_init(…) … module_exit(…) MODULE_LICENSE(…) …; MODULE_AUTHOR(…) …; MODULE_DESCRIPTION(…) …;