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