diff options
Diffstat (limited to 'include/linux/uhid.h')
-rw-r--r-- | include/linux/uhid.h | 21 |
1 files changed, 20 insertions, 1 deletions
diff --git a/include/linux/uhid.h b/include/linux/uhid.h index 16b786a2b18f..8a493e604a77 100644 --- a/include/linux/uhid.h +++ b/include/linux/uhid.h | |||
@@ -23,11 +23,30 @@ | |||
23 | #include <linux/types.h> | 23 | #include <linux/types.h> |
24 | 24 | ||
25 | enum uhid_event_type { | 25 | enum uhid_event_type { |
26 | UHID_DUMMY, | 26 | UHID_CREATE, |
27 | UHID_DESTROY, | ||
27 | }; | 28 | }; |
28 | 29 | ||
30 | struct uhid_create_req { | ||
31 | __u8 name[128]; | ||
32 | __u8 phys[64]; | ||
33 | __u8 uniq[64]; | ||
34 | __u8 __user *rd_data; | ||
35 | __u16 rd_size; | ||
36 | |||
37 | __u16 bus; | ||
38 | __u32 vendor; | ||
39 | __u32 product; | ||
40 | __u32 version; | ||
41 | __u32 country; | ||
42 | } __attribute__((__packed__)); | ||
43 | |||
29 | struct uhid_event { | 44 | struct uhid_event { |
30 | __u32 type; | 45 | __u32 type; |
46 | |||
47 | union { | ||
48 | struct uhid_create_req create; | ||
49 | } u; | ||
31 | } __attribute__((__packed__)); | 50 | } __attribute__((__packed__)); |
32 | 51 | ||
33 | #endif /* __UHID_H_ */ | 52 | #endif /* __UHID_H_ */ |