Lines Matching defs:hidpp_device
131 struct hidpp_device { struct
132 struct hid_device *hid_dev;
133 struct mutex send_mutex;
134 void *send_receive_buf;
135 char *name; /* will never be NULL and should not be freed */
136 wait_queue_head_t wait;
137 bool answer_available;
138 u8 protocol_major;
139 u8 protocol_minor;
141 void *private_data;
143 struct work_struct work;
144 struct kfifo delayed_work_fifo;
145 atomic_t connected;
146 struct input_dev *delayed_input;
148 unsigned long quirks;
172 static void hidpp_connect_event(struct hidpp_device *hidpp_dev); argument