Lines Matching defs:lego_usb_tower
210 struct lego_usb_tower { struct
211 struct mutex lock; /* locks this structure */
212 struct usb_device* udev; /* save off the usb device pointer */
213 unsigned char minor; /* the starting minor number for this device */
215 int open_count; /* number of times this port has been opened */
217 char* read_buffer;
218 size_t read_buffer_length; /* this much came in */
219 size_t read_packet_length; /* this much will be returned on read */
220 spinlock_t read_buffer_lock;
221 int packet_timeout_jiffies;
222 unsigned long read_last_arrival;
246 static inline void tower_delete (struct lego_usb_tower *dev); argument