Lines Matching defs:usb_ftdi
151 struct usb_ftdi { struct
152 struct list_head ftdi_list;
153 struct mutex u132_lock;
154 int command_next;
155 int command_head;
156 struct u132_command command[COMMAND_SIZE];
157 int respond_next;
158 int respond_head;
159 struct u132_respond respond[RESPOND_SIZE];
160 struct u132_target target[4];
161 char device_name[16];
162 unsigned synchronized:1;
163 unsigned enumerated:1;
164 unsigned registered:1;
165 unsigned initialized:1;
166 unsigned card_ejected:1;
167 int function;
168 int sequence_num;
169 int disconnected;
170 int gone_away;
171 int stuck_status;
172 int status_queue_delay;
196 #define kref_to_usb_ftdi(d) container_of(d, struct usb_ftdi, kref) argument