Lines Matching defs:hidpp_device
183 struct hidpp_device { struct
184 struct hid_device *hid_dev;
185 struct input_dev *input;
186 struct mutex send_mutex;
187 void *send_receive_buf;
188 char *name; /* will never be NULL and should not be freed */
189 wait_queue_head_t wait;
190 int very_long_report_length;
191 bool answer_available;
192 u8 protocol_major;
193 u8 protocol_minor;
195 void *private_data;
197 struct work_struct work;
198 struct kfifo delayed_work_fifo;
199 atomic_t connected;
200 struct input_dev *delayed_input;
202 unsigned long quirks;
203 unsigned long capabilities;
204 u8 supported_reports;
206 struct hidpp_battery battery;
230 static void hidpp_connect_event(struct hidpp_device *hidpp_dev); argument