// SPDX-License-Identifier: GPL-2.0+ // ati-tv-wonder-hd-600.h - Keytable for ati_tv_wonder_hd_600 Remote Controller // // keymap imported from ir-keymaps.c // // Copyright (c) 2010 by Mauro Carvalho Chehab #include <media/rc-map.h> #include <linux/module.h> /* ATI TV Wonder HD 600 USB Devin Heitmueller <[email protected]> */ static struct rc_map_table ati_tv_wonder_hd_600[] = …; static struct rc_map_list ati_tv_wonder_hd_600_map = …; static int __init init_rc_map_ati_tv_wonder_hd_600(void) { … } static void __exit exit_rc_map_ati_tv_wonder_hd_600(void) { … } module_init(…) … module_exit(…) MODULE_LICENSE(…) …; MODULE_AUTHOR(…) …; MODULE_DESCRIPTION(…) …;