// SPDX-License-Identifier: GPL-2.0-or-later /* * ATI X10 RF remote keytable * * Copyright (C) 2011 Anssi Hannula <anssi.hannula@?ki.fi> * * This file is based on the static generic keytable previously found in * ati_remote.c, which is * Copyright (c) 2004 Torrey Hoffman <[email protected]> * Copyright (c) 2002 Vladimir Dergachev */ #include <linux/module.h> #include <media/rc-map.h> /* * Intended usage comments below are from vendor-supplied * Source: ATI REMOTE WONDER™ Installation Guide * http://www2.ati.com/manuals/remctrl.pdf * * Scancodes were in strict left-right, top-bottom order on the * original ATI Remote Wonder, but were moved on later models. * * Keys A-F are intended to be user-programmable. */ static struct rc_map_table ati_x10[] = …; static struct rc_map_list ati_x10_map = …; static int __init init_rc_map_ati_x10(void) { … } static void __exit exit_rc_map_ati_x10(void) { … } module_init(…) … module_exit(…) MODULE_LICENSE(…) …; MODULE_AUTHOR(…) …; MODULE_DESCRIPTION(…) …;