1 /* powercolor-real-angel.h - Keytable for powercolor_real_angel Remote Controller
3 * keymap imported from ir-keymaps.c
5 * Copyright (c) 2010 by Mauro Carvalho Chehab <mchehab@redhat.com>
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>
16 * Remote control for Powercolor Real Angel 330
17 * Daniel Fraga <fragabr@gmail.com>
20 static struct rc_map_table powercolor_real_angel
[] = {
21 { 0x38, KEY_SWITCHVIDEOMODE
}, /* switch inputs */
22 { 0x0c, KEY_MEDIA
}, /* Turn ON/OFF App */
33 { 0x0a, KEY_DIGITS
}, /* single, double, tripple digit */
34 { 0x29, KEY_PREVIOUS
}, /* previous channel */
35 { 0x12, KEY_BRIGHTNESSUP
},
36 { 0x13, KEY_BRIGHTNESSDOWN
},
37 { 0x2b, KEY_MODE
}, /* stereo/mono */
38 { 0x2c, KEY_TEXT
}, /* teletext */
39 { 0x20, KEY_CHANNELUP
}, /* channel up */
40 { 0x21, KEY_CHANNELDOWN
}, /* channel down */
41 { 0x10, KEY_VOLUMEUP
}, /* volume up */
42 { 0x11, KEY_VOLUMEDOWN
}, /* volume down */
48 { 0x27, KEY_FASTFORWARD
},
50 { 0x1e, KEY_SEARCH
}, /* autoscan */
51 { 0x0e, KEY_CAMERA
}, /* snapshot */
53 { 0x0f, KEY_SCREEN
}, /* full screen */
54 { 0x14, KEY_RADIO
}, /* FM radio */
55 { 0x25, KEY_POWER
}, /* power */
58 static struct rc_map_list powercolor_real_angel_map
= {
60 .scan
= powercolor_real_angel
,
61 .size
= ARRAY_SIZE(powercolor_real_angel
),
62 .rc_type
= RC_TYPE_UNKNOWN
, /* Legacy IR type */
63 .name
= RC_MAP_POWERCOLOR_REAL_ANGEL
,
67 static int __init
init_rc_map_powercolor_real_angel(void)
69 return rc_map_register(&powercolor_real_angel_map
);
72 static void __exit
exit_rc_map_powercolor_real_angel(void)
74 rc_map_unregister(&powercolor_real_angel_map
);
77 module_init(init_rc_map_powercolor_real_angel
)
78 module_exit(exit_rc_map_powercolor_real_angel
)
80 MODULE_LICENSE("GPL");
81 MODULE_AUTHOR("Mauro Carvalho Chehab <mchehab@redhat.com>");