Lines Matching defs:hidpp_device
103 struct hidpp_device { struct
104 struct hid_device *hid_dev;
105 struct mutex send_mutex;
106 void *send_receive_buf;
107 char *name; /* will never be NULL and should not be freed */
108 wait_queue_head_t wait;
109 bool answer_available;
110 u8 protocol_major;
111 u8 protocol_minor;
113 void *private_data;
115 struct work_struct work;
116 struct kfifo delayed_work_fifo;
117 atomic_t connected;
118 struct input_dev *delayed_input;
142 static void hidpp_connect_event(struct hidpp_device *hidpp_dev); argument