Lines Matching defs:hidpp_device
92 struct hidpp_device { struct
93 struct hid_device *hid_dev;
94 struct mutex send_mutex;
95 void *send_receive_buf;
96 char *name; /* will never be NULL and should not be freed */
97 wait_queue_head_t wait;
98 bool answer_available;
99 u8 protocol_major;
100 u8 protocol_minor;
102 void *private_data;
104 struct work_struct work;
105 struct kfifo delayed_work_fifo;
106 atomic_t connected;
107 struct input_dev *delayed_input;
131 static void hidpp_connect_event(struct hidpp_device *hidpp_dev); argument