Linux Kernel
3.7.1
Main Page
Related Pages
Modules
Namespaces
Data Structures
Files
File List
Globals
All
Data Structures
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Macros
Groups
Pages
drivers
media
rc
keymaps
rc-avermedia-a16d.c
Go to the documentation of this file.
1
/* avermedia-a16d.h - Keytable for avermedia_a16d Remote Controller
2
*
3
* keymap imported from ir-keymaps.c
4
*
5
* Copyright (c) 2010 by Mauro Carvalho Chehab <
[email protected]
>
6
*
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.
11
*/
12
13
#include <
media/rc-map.h
>
14
#include <linux/module.h>
15
16
static
struct
rc_map_table
avermedia_a16d[] = {
17
{ 0x20,
KEY_LIST
},
18
{ 0x00,
KEY_POWER
},
19
{ 0x28,
KEY_1
},
20
{ 0x18,
KEY_2
},
21
{ 0x38,
KEY_3
},
22
{ 0x24,
KEY_4
},
23
{ 0x14,
KEY_5
},
24
{ 0x34,
KEY_6
},
25
{ 0x2c,
KEY_7
},
26
{ 0x1c,
KEY_8
},
27
{ 0x3c,
KEY_9
},
28
{ 0x12,
KEY_SUBTITLE
},
29
{ 0x22,
KEY_0
},
30
{ 0x32,
KEY_REWIND
},
31
{ 0x3a,
KEY_SHUFFLE
},
32
{ 0x02,
KEY_PRINT
},
33
{ 0x11,
KEY_CHANNELDOWN
},
34
{ 0x31,
KEY_CHANNELUP
},
35
{ 0x0c,
KEY_ZOOM
},
36
{ 0x1e,
KEY_VOLUMEDOWN
},
37
{ 0x3e,
KEY_VOLUMEUP
},
38
{ 0x0a,
KEY_MUTE
},
39
{ 0x04,
KEY_AUDIO
},
40
{ 0x26,
KEY_RECORD
},
41
{ 0x06,
KEY_PLAY
},
42
{ 0x36,
KEY_STOP
},
43
{ 0x16,
KEY_PAUSE
},
44
{ 0x2e,
KEY_REWIND
},
45
{ 0x0e,
KEY_FASTFORWARD
},
46
{ 0x30,
KEY_TEXT
},
47
{ 0x21,
KEY_GREEN
},
48
{ 0x01,
KEY_BLUE
},
49
{ 0x08,
KEY_EPG
},
50
{ 0x2a,
KEY_MENU
},
51
};
52
53
static
struct
rc_map_list
avermedia_a16d_map = {
54
.map = {
55
.scan = avermedia_a16d,
56
.size =
ARRAY_SIZE
(avermedia_a16d),
57
.rc_type =
RC_TYPE_UNKNOWN
,
/* Legacy IR type */
58
.name =
RC_MAP_AVERMEDIA_A16D
,
59
}
60
};
61
62
static
int
__init
init_rc_map_avermedia_a16d(
void
)
63
{
64
return
rc_map_register
(&avermedia_a16d_map);
65
}
66
67
static
void
__exit
exit_rc_map_avermedia_a16d(
void
)
68
{
69
rc_map_unregister
(&avermedia_a16d_map);
70
}
71
72
module_init
(init_rc_map_avermedia_a16d)
73
module_exit
(exit_rc_map_avermedia_a16d)
74
75
MODULE_LICENSE
("GPL");
76
MODULE_AUTHOR
("Mauro Carvalho Chehab <
[email protected]
>");
Generated on Thu Jan 10 2013 13:50:24 for Linux Kernel by
1.8.2