// SPDX-License-Identifier: GPL-2.0-or-later /* rc-streamzap.c - Keytable for Streamzap PC Remote, for use * with the Streamzap PC Remote IR Receiver. * * Copyright (c) 2010 by Jarod Wilson <[email protected]> */ #include <media/rc-map.h> #include <linux/module.h> static struct rc_map_table streamzap[] = …; static struct rc_map_list streamzap_map = …; static int __init init_rc_map_streamzap(void) { … } static void __exit exit_rc_map_streamzap(void) { … } module_init(…) … module_exit(…) MODULE_LICENSE(…) …; MODULE_AUTHOR(…) …; MODULE_DESCRIPTION(…) …;