// SPDX-License-Identifier: GPL-2.0+ // norwood.h - Keytable for norwood Remote Controller // // keymap imported from ir-keymaps.c // // Copyright (c) 2010 by Mauro Carvalho Chehab #include <media/rc-map.h> #include <linux/module.h> /* Norwood Micro (non-Pro) TV Tuner By Peter Naulls <[email protected]> Key comments are the functions given in the manual */ static struct rc_map_table norwood[] = …; static struct rc_map_list norwood_map = …; static int __init init_rc_map_norwood(void) { … } static void __exit exit_rc_map_norwood(void) { … } module_init(…) … module_exit(…) MODULE_LICENSE(…) …; MODULE_AUTHOR(…) …; MODULE_DESCRIPTION(…) …;