aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/uhid.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/uhid.h')
-rw-r--r--include/linux/uhid.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/include/linux/uhid.h b/include/linux/uhid.h
index 2c972550a624..9c6974f16966 100644
--- a/include/linux/uhid.h
+++ b/include/linux/uhid.h
@@ -32,6 +32,8 @@ enum uhid_event_type {
32 UHID_OUTPUT, 32 UHID_OUTPUT,
33 UHID_OUTPUT_EV, 33 UHID_OUTPUT_EV,
34 UHID_INPUT, 34 UHID_INPUT,
35 UHID_FEATURE,
36 UHID_FEATURE_ANSWER,
35}; 37};
36 38
37struct uhid_create_req { 39struct uhid_create_req {
@@ -73,6 +75,19 @@ struct uhid_output_ev_req {
73 __s32 value; 75 __s32 value;
74} __attribute__((__packed__)); 76} __attribute__((__packed__));
75 77
78struct uhid_feature_req {
79 __u32 id;
80 __u8 rnum;
81 __u8 rtype;
82} __attribute__((__packed__));
83
84struct uhid_feature_answer_req {
85 __u32 id;
86 __u16 err;
87 __u16 size;
88 __u8 data[UHID_DATA_MAX];
89};
90
76struct uhid_event { 91struct uhid_event {
77 __u32 type; 92 __u32 type;
78 93
@@ -81,6 +96,8 @@ struct uhid_event {
81 struct uhid_input_req input; 96 struct uhid_input_req input;
82 struct uhid_output_req output; 97 struct uhid_output_req output;
83 struct uhid_output_ev_req output_ev; 98 struct uhid_output_ev_req output_ev;
99 struct uhid_feature_req feature;
100 struct uhid_feature_answer_req feature_answer;
84 } u; 101 } u;
85} __attribute__((__packed__)); 102} __attribute__((__packed__));
86 103