1 /* npgtech.h - Keytable for npgtech Remote Controller
3 * keymap imported from ir-keymaps.c
5 * Copyright (c) 2010 by Mauro Carvalho Chehab
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
13 #include <media/rc-map.h>
14 #include <linux/module.h>
16 static struct rc_map_table npgtech
[] = {
17 { 0x1d, KEY_SWITCHVIDEOMODE
}, /* switch inputs */
30 { 0x22, KEY_NUMLOCK
}, /* -/-- */
31 { 0x20, KEY_REFRESH
},
33 { 0x03, KEY_BRIGHTNESSDOWN
},
35 { 0x3c, KEY_CHANNELUP
},
36 { 0x3f, KEY_VOLUMEDOWN
},
38 { 0x3b, KEY_VOLUMEUP
},
39 { 0x00, KEY_CHANNELDOWN
},
40 { 0x07, KEY_BRIGHTNESSUP
},
47 { 0x18, KEY_FASTFORWARD
},
50 { 0x32, KEY_KEYBOARD
},
51 { 0x30, KEY_GOTO
}, /* Pointing arrow */
52 { 0x36, KEY_MACRO
}, /* Maximize/Minimize (yellow) */
58 static struct rc_map_list npgtech_map
= {
61 .size
= ARRAY_SIZE(npgtech
),
62 .rc_type
= RC_TYPE_UNKNOWN
, /* Legacy IR type */
63 .name
= RC_MAP_NPGTECH
,
67 static int __init
init_rc_map_npgtech(void)
69 return rc_map_register(&npgtech_map
);
72 static void __exit
exit_rc_map_npgtech(void)
74 rc_map_unregister(&npgtech_map
);
77 module_init(init_rc_map_npgtech
)
78 module_exit(exit_rc_map_npgtech
)
80 MODULE_LICENSE("GPL");
81 MODULE_AUTHOR("Mauro Carvalho Chehab");