Lines Matching defs:hidpp_device
165 struct hidpp_device { struct
166 struct hid_device *hid_dev;
167 struct input_dev *input;
168 struct mutex send_mutex;
169 void *send_receive_buf;
170 char *name; /* will never be NULL and should not be freed */
171 wait_queue_head_t wait;
172 int very_long_report_length;
173 bool answer_available;
174 u8 protocol_major;
175 u8 protocol_minor;
177 void *private_data;
179 struct work_struct work;
180 struct kfifo delayed_work_fifo;
181 atomic_t connected;
182 struct input_dev *delayed_input;
184 unsigned long quirks;
185 unsigned long capabilities;
209 static void hidpp_connect_event(struct hidpp_device *hidpp_dev); argument