1 // SPDX-License-Identifier: GPL-2.0+
6 * Keytable for the Khadas VIM/EDGE SBC remote control
9 #include <media/rc-map.h>
10 #include <linux/module.h>
12 static struct rc_map_table khadas[] = {
22 { 0x5b, KEY_MUTE }, // mouse
25 { 0x58, KEY_VOLUMEDOWN },
26 { 0x0b, KEY_VOLUMEUP },
31 static struct rc_map_list khadas_map = {
34 .size = ARRAY_SIZE(khadas),
35 .rc_proto = RC_PROTO_NEC,
36 .name = RC_MAP_KHADAS,
40 static int __init init_rc_map_khadas(void)
42 return rc_map_register(&khadas_map);
45 static void __exit exit_rc_map_khadas(void)
47 rc_map_unregister(&khadas_map);
50 module_init(init_rc_map_khadas)
51 module_exit(exit_rc_map_khadas)
53 MODULE_LICENSE("GPL");