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