1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
|
#ifndef _SERIO_IDS_H
#define _SERIO_IDS_H
#ifndef SERIO_RS232
# define SERIO_RS232 0x02
#endif
/*
* Serio types
*/
#ifndef SERIO_UNKNOWN
# define SERIO_UNKNOWN 0x00
#endif
#ifndef SERIO_MSC
# define SERIO_MSC 0x01
#endif
#ifndef SERIO_SUN
# define SERIO_SUN 0x02
#endif
#ifndef SERIO_MS
# define SERIO_MS 0x03
#endif
#ifndef SERIO_MP
# define SERIO_MP 0x04
#endif
#ifndef SERIO_MZ
# define SERIO_MZ 0x05
#endif
#ifndef SERIO_MZP
# define SERIO_MZP 0x06
#endif
#ifndef SERIO_MZPP
# define SERIO_MZPP 0x07
#endif
#ifndef SERIO_VSXXXAA
# define SERIO_VSXXXAA 0x08
#endif
#ifndef SERIO_SUNKBD
# define SERIO_SUNKBD 0x10
#endif
#ifndef SERIO_WARRIOR
# define SERIO_WARRIOR 0x18
#endif
#ifndef SERIO_SPACEORB
# define SERIO_SPACEORB 0x19
#endif
#ifndef SERIO_MAGELLAN
# define SERIO_MAGELLAN 0x1a
#endif
#ifndef SERIO_SPACEBALL
# define SERIO_SPACEBALL 0x1b
#endif
#ifndef SERIO_GUNZE
# define SERIO_GUNZE 0x1c
#endif
#ifndef SERIO_IFORCE
# define SERIO_IFORCE 0x1d
#endif
#ifndef SERIO_STINGER
# define SERIO_STINGER 0x1e
#endif
#ifndef SERIO_NEWTON
# define SERIO_NEWTON 0x1f
#endif
#ifndef SERIO_STOWAWAY
# define SERIO_STOWAWAY 0x20
#endif
#ifndef SERIO_H3600
# define SERIO_H3600 0x21
#endif
#ifndef SERIO_PS2SER
# define SERIO_PS2SER 0x22
#endif
#ifndef SERIO_TWIDKBD
# define SERIO_TWIDKBD 0x23
#endif
#ifndef SERIO_TWIDJOY
# define SERIO_TWIDJOY 0x24
#endif
#ifndef SERIO_HIL
# define SERIO_HIL 0x25
#endif
#ifndef SERIO_SNES232
# define SERIO_SNES232 0x26
#endif
#ifndef SERIO_SEMTECH
# define SERIO_SEMTECH 0x27
#endif
#ifndef SERIO_LKKBD
# define SERIO_LKKBD 0x28
#endif
#ifndef SERIO_ELO
# define SERIO_ELO 0x29
#endif
#ifndef SERIO_MICROTOUCH
# define SERIO_MICROTOUCH 0x30
#endif
#ifndef SERIO_PENMOUNT
# define SERIO_PENMOUNT 0x31
#endif
#ifndef SERIO_TOUCHRIGHT
# define SERIO_TOUCHRIGHT 0x32
#endif
#ifndef SERIO_TOUCHWIN
# define SERIO_TOUCHWIN 0x33
#endif
#ifndef SERIO_TAOSEVM
# define SERIO_TAOSEVM 0x34
#endif
#ifndef SERIO_FUJITSU
# define SERIO_FUJITSU 0x35
#endif
#ifndef SERIO_ZHENHUA
# define SERIO_ZHENHUA 0x36
#endif
#ifndef SERIO_INEXIO
# define SERIO_INEXIO 0x37
#endif
#ifndef SERIO_TOUCHIT213
# define SERIO_TOUCHIT213 0x38
#endif
#ifndef SERIO_W8001
# define SERIO_W8001 0x39
#endif
#ifndef SERIO_PSMULT
# define SERIO_PS2MULT 0x3c
#endif
#ifndef SERIO_EASYPEN
# define SERIO_EASYPEN 0x3e
#endif
#endif
|