aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/usb
diff options
context:
space:
mode:
Diffstat (limited to 'include/linux/usb')
-rw-r--r--include/linux/usb/Kbuild5
-rw-r--r--include/linux/usb/ch9.h563
-rw-r--r--include/linux/usb/serial.h5
3 files changed, 573 insertions, 0 deletions
diff --git a/include/linux/usb/Kbuild b/include/linux/usb/Kbuild
new file mode 100644
index 000000000000..43f160cfe003
--- /dev/null
+++ b/include/linux/usb/Kbuild
@@ -0,0 +1,5 @@
1unifdef-y += audio.h
2unifdef-y += cdc.h
3unifdef-y += ch9.h
4unifdef-y += midi.h
5
diff --git a/include/linux/usb/ch9.h b/include/linux/usb/ch9.h
new file mode 100644
index 000000000000..ae7833749fa2
--- /dev/null
+++ b/include/linux/usb/ch9.h
@@ -0,0 +1,563 @@
1/*
2 * This file holds USB constants and structures that are needed for USB
3 * device APIs. These are used by the USB device model, which is defined
4 * in chapter 9 of the USB 2.0 specification. Linux has several APIs in C
5 * that need these:
6 *
7 * - the master/host side Linux-USB kernel driver API;
8 * - the "usbfs" user space API; and
9 * - the Linux "gadget" slave/device/peripheral side driver API.
10 *
11 * USB 2.0 adds an additional "On The Go" (OTG) mode, which lets systems
12 * act either as a USB master/host or as a USB slave/device. That means
13 * the master and slave side APIs benefit from working well together.
14 *
15 * There's also "Wireless USB", using low power short range radios for
16 * peripheral interconnection but otherwise building on the USB framework.
17 */
18
19#ifndef __LINUX_USB_CH9_H
20#define __LINUX_USB_CH9_H
21
22#include <linux/types.h> /* __u8 etc */
23
24/*-------------------------------------------------------------------------*/
25
26/* CONTROL REQUEST SUPPORT */
27
28/*
29 * USB directions
30 *
31 * This bit flag is used in endpoint descriptors' bEndpointAddress field.
32 * It's also one of three fields in control requests bRequestType.
33 */
34#define USB_DIR_OUT 0 /* to device */
35#define USB_DIR_IN 0x80 /* to host */
36
37/*
38 * USB types, the second of three bRequestType fields
39 */
40#define USB_TYPE_MASK (0x03 << 5)
41#define USB_TYPE_STANDARD (0x00 << 5)
42#define USB_TYPE_CLASS (0x01 << 5)
43#define USB_TYPE_VENDOR (0x02 << 5)
44#define USB_TYPE_RESERVED (0x03 << 5)
45
46/*
47 * USB recipients, the third of three bRequestType fields
48 */
49#define USB_RECIP_MASK 0x1f
50#define USB_RECIP_DEVICE 0x00
51#define USB_RECIP_INTERFACE 0x01
52#define USB_RECIP_ENDPOINT 0x02
53#define USB_RECIP_OTHER 0x03
54/* From Wireless USB 1.0 */
55#define USB_RECIP_PORT 0x04
56#define USB_RECIP_RPIPE 0x05
57
58/*
59 * Standard requests, for the bRequest field of a SETUP packet.
60 *
61 * These are qualified by the bRequestType field, so that for example
62 * TYPE_CLASS or TYPE_VENDOR specific feature flags could be retrieved
63 * by a GET_STATUS request.
64 */
65#define USB_REQ_GET_STATUS 0x00
66#define USB_REQ_CLEAR_FEATURE 0x01
67#define USB_REQ_SET_FEATURE 0x03
68#define USB_REQ_SET_ADDRESS 0x05
69#define USB_REQ_GET_DESCRIPTOR 0x06
70#define USB_REQ_SET_DESCRIPTOR 0x07
71#define USB_REQ_GET_CONFIGURATION 0x08
72#define USB_REQ_SET_CONFIGURATION 0x09
73#define USB_REQ_GET_INTERFACE 0x0A
74#define USB_REQ_SET_INTERFACE 0x0B
75#define USB_REQ_SYNCH_FRAME 0x0C
76
77#define USB_REQ_SET_ENCRYPTION 0x0D /* Wireless USB */
78#define USB_REQ_GET_ENCRYPTION 0x0E
79#define USB_REQ_RPIPE_ABORT 0x0E
80#define USB_REQ_SET_HANDSHAKE 0x0F
81#define USB_REQ_RPIPE_RESET 0x0F
82#define USB_REQ_GET_HANDSHAKE 0x10
83#define USB_REQ_SET_CONNECTION 0x11
84#define USB_REQ_SET_SECURITY_DATA 0x12
85#define USB_REQ_GET_SECURITY_DATA 0x13
86#define USB_REQ_SET_WUSB_DATA 0x14
87#define USB_REQ_LOOPBACK_DATA_WRITE 0x15
88#define USB_REQ_LOOPBACK_DATA_READ 0x16
89#define USB_REQ_SET_INTERFACE_DS 0x17
90
91/*
92 * USB feature flags are written using USB_REQ_{CLEAR,SET}_FEATURE, and
93 * are read as a bit array returned by USB_REQ_GET_STATUS. (So there
94 * are at most sixteen features of each type.)
95 */
96#define USB_DEVICE_SELF_POWERED 0 /* (read only) */
97#define USB_DEVICE_REMOTE_WAKEUP 1 /* dev may initiate wakeup */
98#define USB_DEVICE_TEST_MODE 2 /* (wired high speed only) */
99#define USB_DEVICE_BATTERY 2 /* (wireless) */
100#define USB_DEVICE_B_HNP_ENABLE 3 /* (otg) dev may initiate HNP */
101#define USB_DEVICE_WUSB_DEVICE 3 /* (wireless)*/
102#define USB_DEVICE_A_HNP_SUPPORT 4 /* (otg) RH port supports HNP */
103#define USB_DEVICE_A_ALT_HNP_SUPPORT 5 /* (otg) other RH port does */
104#define USB_DEVICE_DEBUG_MODE 6 /* (special devices only) */
105
106#define USB_ENDPOINT_HALT 0 /* IN/OUT will STALL */
107
108
109/**
110 * struct usb_ctrlrequest - SETUP data for a USB device control request
111 * @bRequestType: matches the USB bmRequestType field
112 * @bRequest: matches the USB bRequest field
113 * @wValue: matches the USB wValue field (le16 byte order)
114 * @wIndex: matches the USB wIndex field (le16 byte order)
115 * @wLength: matches the USB wLength field (le16 byte order)
116 *
117 * This structure is used to send control requests to a USB device. It matches
118 * the different fields of the USB 2.0 Spec section 9.3, table 9-2. See the
119 * USB spec for a fuller description of the different fields, and what they are
120 * used for.
121 *
122 * Note that the driver for any interface can issue control requests.
123 * For most devices, interfaces don't coordinate with each other, so
124 * such requests may be made at any time.
125 */
126struct usb_ctrlrequest {
127 __u8 bRequestType;
128 __u8 bRequest;
129 __le16 wValue;
130 __le16 wIndex;
131 __le16 wLength;
132} __attribute__ ((packed));
133
134/*-------------------------------------------------------------------------*/
135
136/*
137 * STANDARD DESCRIPTORS ... as returned by GET_DESCRIPTOR, or
138 * (rarely) accepted by SET_DESCRIPTOR.
139 *
140 * Note that all multi-byte values here are encoded in little endian
141 * byte order "on the wire". But when exposed through Linux-USB APIs,
142 * they've been converted to cpu byte order.
143 */
144
145/*
146 * Descriptor types ... USB 2.0 spec table 9.5
147 */
148#define USB_DT_DEVICE 0x01
149#define USB_DT_CONFIG 0x02
150#define USB_DT_STRING 0x03
151#define USB_DT_INTERFACE 0x04
152#define USB_DT_ENDPOINT 0x05
153#define USB_DT_DEVICE_QUALIFIER 0x06
154#define USB_DT_OTHER_SPEED_CONFIG 0x07
155#define USB_DT_INTERFACE_POWER 0x08
156/* these are from a minor usb 2.0 revision (ECN) */
157#define USB_DT_OTG 0x09
158#define USB_DT_DEBUG 0x0a
159#define USB_DT_INTERFACE_ASSOCIATION 0x0b
160/* these are from the Wireless USB spec */
161#define USB_DT_SECURITY 0x0c
162#define USB_DT_KEY 0x0d
163#define USB_DT_ENCRYPTION_TYPE 0x0e
164#define USB_DT_BOS 0x0f
165#define USB_DT_DEVICE_CAPABILITY 0x10
166#define USB_DT_WIRELESS_ENDPOINT_COMP 0x11
167#define USB_DT_WIRE_ADAPTER 0x21
168#define USB_DT_RPIPE 0x22
169
170/* conventional codes for class-specific descriptors */
171#define USB_DT_CS_DEVICE 0x21
172#define USB_DT_CS_CONFIG 0x22
173#define USB_DT_CS_STRING 0x23
174#define USB_DT_CS_INTERFACE 0x24
175#define USB_DT_CS_ENDPOINT 0x25
176
177/* All standard descriptors have these 2 fields at the beginning */
178struct usb_descriptor_header {
179 __u8 bLength;
180 __u8 bDescriptorType;
181} __attribute__ ((packed));
182
183
184/*-------------------------------------------------------------------------*/
185
186/* USB_DT_DEVICE: Device descriptor */
187struct usb_device_descriptor {
188 __u8 bLength;
189 __u8 bDescriptorType;
190
191 __le16 bcdUSB;
192 __u8 bDeviceClass;
193 __u8 bDeviceSubClass;
194 __u8 bDeviceProtocol;
195 __u8 bMaxPacketSize0;
196 __le16 idVendor;
197 __le16 idProduct;
198 __le16 bcdDevice;
199 __u8 iManufacturer;
200 __u8 iProduct;
201 __u8 iSerialNumber;
202 __u8 bNumConfigurations;
203} __attribute__ ((packed));
204
205#define USB_DT_DEVICE_SIZE 18
206
207
208/*
209 * Device and/or Interface Class codes
210 * as found in bDeviceClass or bInterfaceClass
211 * and defined by www.usb.org documents
212 */
213#define USB_CLASS_PER_INTERFACE 0 /* for DeviceClass */
214#define USB_CLASS_AUDIO 1
215#define USB_CLASS_COMM 2
216#define USB_CLASS_HID 3
217#define USB_CLASS_PHYSICAL 5
218#define USB_CLASS_STILL_IMAGE 6
219#define USB_CLASS_PRINTER 7
220#define USB_CLASS_MASS_STORAGE 8
221#define USB_CLASS_HUB 9
222#define USB_CLASS_CDC_DATA 0x0a
223#define USB_CLASS_CSCID 0x0b /* chip+ smart card */
224#define USB_CLASS_CONTENT_SEC 0x0d /* content security */
225#define USB_CLASS_VIDEO 0x0e
226#define USB_CLASS_WIRELESS_CONTROLLER 0xe0
227#define USB_CLASS_MISC 0xef
228#define USB_CLASS_APP_SPEC 0xfe
229#define USB_CLASS_VENDOR_SPEC 0xff
230
231/*-------------------------------------------------------------------------*/
232
233/* USB_DT_CONFIG: Configuration descriptor information.
234 *
235 * USB_DT_OTHER_SPEED_CONFIG is the same descriptor, except that the
236 * descriptor type is different. Highspeed-capable devices can look
237 * different depending on what speed they're currently running. Only
238 * devices with a USB_DT_DEVICE_QUALIFIER have any OTHER_SPEED_CONFIG
239 * descriptors.
240 */
241struct usb_config_descriptor {
242 __u8 bLength;
243 __u8 bDescriptorType;
244
245 __le16 wTotalLength;
246 __u8 bNumInterfaces;
247 __u8 bConfigurationValue;
248 __u8 iConfiguration;
249 __u8 bmAttributes;
250 __u8 bMaxPower;
251} __attribute__ ((packed));
252
253#define USB_DT_CONFIG_SIZE 9
254
255/* from config descriptor bmAttributes */
256#define USB_CONFIG_ATT_ONE (1 << 7) /* must be set */
257#define USB_CONFIG_ATT_SELFPOWER (1 << 6) /* self powered */
258#define USB_CONFIG_ATT_WAKEUP (1 << 5) /* can wakeup */
259#define USB_CONFIG_ATT_BATTERY (1 << 4) /* battery powered */
260
261/*-------------------------------------------------------------------------*/
262
263/* USB_DT_STRING: String descriptor */
264struct usb_string_descriptor {
265 __u8 bLength;
266 __u8 bDescriptorType;
267
268 __le16 wData[1]; /* UTF-16LE encoded */
269} __attribute__ ((packed));
270
271/* note that "string" zero is special, it holds language codes that
272 * the device supports, not Unicode characters.
273 */
274
275/*-------------------------------------------------------------------------*/
276
277/* USB_DT_INTERFACE: Interface descriptor */
278struct usb_interface_descriptor {
279 __u8 bLength;
280 __u8 bDescriptorType;
281
282 __u8 bInterfaceNumber;
283 __u8 bAlternateSetting;
284 __u8 bNumEndpoints;
285 __u8 bInterfaceClass;
286 __u8 bInterfaceSubClass;
287 __u8 bInterfaceProtocol;
288 __u8 iInterface;
289} __attribute__ ((packed));
290
291#define USB_DT_INTERFACE_SIZE 9
292
293/*-------------------------------------------------------------------------*/
294
295/* USB_DT_ENDPOINT: Endpoint descriptor */
296struct usb_endpoint_descriptor {
297 __u8 bLength;
298 __u8 bDescriptorType;
299
300 __u8 bEndpointAddress;
301 __u8 bmAttributes;
302 __le16 wMaxPacketSize;
303 __u8 bInterval;
304
305 /* NOTE: these two are _only_ in audio endpoints. */
306 /* use USB_DT_ENDPOINT*_SIZE in bLength, not sizeof. */
307 __u8 bRefresh;
308 __u8 bSynchAddress;
309} __attribute__ ((packed));
310
311#define USB_DT_ENDPOINT_SIZE 7
312#define USB_DT_ENDPOINT_AUDIO_SIZE 9 /* Audio extension */
313
314
315/*
316 * Endpoints
317 */
318#define USB_ENDPOINT_NUMBER_MASK 0x0f /* in bEndpointAddress */
319#define USB_ENDPOINT_DIR_MASK 0x80
320
321#define USB_ENDPOINT_XFERTYPE_MASK 0x03 /* in bmAttributes */
322#define USB_ENDPOINT_XFER_CONTROL 0
323#define USB_ENDPOINT_XFER_ISOC 1
324#define USB_ENDPOINT_XFER_BULK 2
325#define USB_ENDPOINT_XFER_INT 3
326#define USB_ENDPOINT_MAX_ADJUSTABLE 0x80
327
328
329/*-------------------------------------------------------------------------*/
330
331/* USB_DT_DEVICE_QUALIFIER: Device Qualifier descriptor */
332struct usb_qualifier_descriptor {
333 __u8 bLength;
334 __u8 bDescriptorType;
335
336 __le16 bcdUSB;
337 __u8 bDeviceClass;
338 __u8 bDeviceSubClass;
339 __u8 bDeviceProtocol;
340 __u8 bMaxPacketSize0;
341 __u8 bNumConfigurations;
342 __u8 bRESERVED;
343} __attribute__ ((packed));
344
345
346/*-------------------------------------------------------------------------*/
347
348/* USB_DT_OTG (from OTG 1.0a supplement) */
349struct usb_otg_descriptor {
350 __u8 bLength;
351 __u8 bDescriptorType;
352
353 __u8 bmAttributes; /* support for HNP, SRP, etc */
354} __attribute__ ((packed));
355
356/* from usb_otg_descriptor.bmAttributes */
357#define USB_OTG_SRP (1 << 0)
358#define USB_OTG_HNP (1 << 1) /* swap host/device roles */
359
360/*-------------------------------------------------------------------------*/
361
362/* USB_DT_DEBUG: for special highspeed devices, replacing serial console */
363struct usb_debug_descriptor {
364 __u8 bLength;
365 __u8 bDescriptorType;
366
367 /* bulk endpoints with 8 byte maxpacket */
368 __u8 bDebugInEndpoint;
369 __u8 bDebugOutEndpoint;
370};
371
372/*-------------------------------------------------------------------------*/
373
374/* USB_DT_INTERFACE_ASSOCIATION: groups interfaces */
375struct usb_interface_assoc_descriptor {
376 __u8 bLength;
377 __u8 bDescriptorType;
378
379 __u8 bFirstInterface;
380 __u8 bInterfaceCount;
381 __u8 bFunctionClass;
382 __u8 bFunctionSubClass;
383 __u8 bFunctionProtocol;
384 __u8 iFunction;
385} __attribute__ ((packed));
386
387
388/*-------------------------------------------------------------------------*/
389
390/* USB_DT_SECURITY: group of wireless security descriptors, including
391 * encryption types available for setting up a CC/association.
392 */
393struct usb_security_descriptor {
394 __u8 bLength;
395 __u8 bDescriptorType;
396
397 __le16 wTotalLength;
398 __u8 bNumEncryptionTypes;
399};
400
401/*-------------------------------------------------------------------------*/
402
403/* USB_DT_KEY: used with {GET,SET}_SECURITY_DATA; only public keys
404 * may be retrieved.
405 */
406struct usb_key_descriptor {
407 __u8 bLength;
408 __u8 bDescriptorType;
409
410 __u8 tTKID[3];
411 __u8 bReserved;
412 __u8 bKeyData[0];
413};
414
415/*-------------------------------------------------------------------------*/
416
417/* USB_DT_ENCRYPTION_TYPE: bundled in DT_SECURITY groups */
418struct usb_encryption_descriptor {
419 __u8 bLength;
420 __u8 bDescriptorType;
421
422 __u8 bEncryptionType;
423#define USB_ENC_TYPE_UNSECURE 0
424#define USB_ENC_TYPE_WIRED 1 /* non-wireless mode */
425#define USB_ENC_TYPE_CCM_1 2 /* aes128/cbc session */
426#define USB_ENC_TYPE_RSA_1 3 /* rsa3072/sha1 auth */
427 __u8 bEncryptionValue; /* use in SET_ENCRYPTION */
428 __u8 bAuthKeyIndex;
429};
430
431
432/*-------------------------------------------------------------------------*/
433
434/* USB_DT_BOS: group of wireless capabilities */
435struct usb_bos_descriptor {
436 __u8 bLength;
437 __u8 bDescriptorType;
438
439 __le16 wTotalLength;
440 __u8 bNumDeviceCaps;
441};
442
443/*-------------------------------------------------------------------------*/
444
445/* USB_DT_DEVICE_CAPABILITY: grouped with BOS */
446struct usb_dev_cap_header {
447 __u8 bLength;
448 __u8 bDescriptorType;
449 __u8 bDevCapabilityType;
450};
451
452#define USB_CAP_TYPE_WIRELESS_USB 1
453
454struct usb_wireless_cap_descriptor { /* Ultra Wide Band */
455 __u8 bLength;
456 __u8 bDescriptorType;
457 __u8 bDevCapabilityType;
458
459 __u8 bmAttributes;
460#define USB_WIRELESS_P2P_DRD (1 << 1)
461#define USB_WIRELESS_BEACON_MASK (3 << 2)
462#define USB_WIRELESS_BEACON_SELF (1 << 2)
463#define USB_WIRELESS_BEACON_DIRECTED (2 << 2)
464#define USB_WIRELESS_BEACON_NONE (3 << 2)
465 __le16 wPHYRates; /* bit rates, Mbps */
466#define USB_WIRELESS_PHY_53 (1 << 0) /* always set */
467#define USB_WIRELESS_PHY_80 (1 << 1)
468#define USB_WIRELESS_PHY_107 (1 << 2) /* always set */
469#define USB_WIRELESS_PHY_160 (1 << 3)
470#define USB_WIRELESS_PHY_200 (1 << 4) /* always set */
471#define USB_WIRELESS_PHY_320 (1 << 5)
472#define USB_WIRELESS_PHY_400 (1 << 6)
473#define USB_WIRELESS_PHY_480 (1 << 7)
474 __u8 bmTFITXPowerInfo; /* TFI power levels */
475 __u8 bmFFITXPowerInfo; /* FFI power levels */
476 __le16 bmBandGroup;
477 __u8 bReserved;
478};
479
480/*-------------------------------------------------------------------------*/
481
482/* USB_DT_WIRELESS_ENDPOINT_COMP: companion descriptor associated with
483 * each endpoint descriptor for a wireless device
484 */
485struct usb_wireless_ep_comp_descriptor {
486 __u8 bLength;
487 __u8 bDescriptorType;
488
489 __u8 bMaxBurst;
490 __u8 bMaxSequence;
491 __le16 wMaxStreamDelay;
492 __le16 wOverTheAirPacketSize;
493 __u8 bOverTheAirInterval;
494 __u8 bmCompAttributes;
495#define USB_ENDPOINT_SWITCH_MASK 0x03 /* in bmCompAttributes */
496#define USB_ENDPOINT_SWITCH_NO 0
497#define USB_ENDPOINT_SWITCH_SWITCH 1
498#define USB_ENDPOINT_SWITCH_SCALE 2
499};
500
501/*-------------------------------------------------------------------------*/
502
503/* USB_REQ_SET_HANDSHAKE is a four-way handshake used between a wireless
504 * host and a device for connection set up, mutual authentication, and
505 * exchanging short lived session keys. The handshake depends on a CC.
506 */
507struct usb_handshake {
508 __u8 bMessageNumber;
509 __u8 bStatus;
510 __u8 tTKID[3];
511 __u8 bReserved;
512 __u8 CDID[16];
513 __u8 nonce[16];
514 __u8 MIC[8];
515};
516
517/*-------------------------------------------------------------------------*/
518
519/* USB_REQ_SET_CONNECTION modifies or revokes a connection context (CC).
520 * A CC may also be set up using non-wireless secure channels (including
521 * wired USB!), and some devices may support CCs with multiple hosts.
522 */
523struct usb_connection_context {
524 __u8 CHID[16]; /* persistent host id */
525 __u8 CDID[16]; /* device id (unique w/in host context) */
526 __u8 CK[16]; /* connection key */
527};
528
529/*-------------------------------------------------------------------------*/
530
531/* USB 2.0 defines three speeds, here's how Linux identifies them */
532
533enum usb_device_speed {
534 USB_SPEED_UNKNOWN = 0, /* enumerating */
535 USB_SPEED_LOW, USB_SPEED_FULL, /* usb 1.1 */
536 USB_SPEED_HIGH, /* usb 2.0 */
537 USB_SPEED_VARIABLE, /* wireless (usb 2.5) */
538};
539
540enum usb_device_state {
541 /* NOTATTACHED isn't in the USB spec, and this state acts
542 * the same as ATTACHED ... but it's clearer this way.
543 */
544 USB_STATE_NOTATTACHED = 0,
545
546 /* chapter 9 and authentication (wireless) device states */
547 USB_STATE_ATTACHED,
548 USB_STATE_POWERED, /* wired */
549 USB_STATE_UNAUTHENTICATED, /* auth */
550 USB_STATE_RECONNECTING, /* auth */
551 USB_STATE_DEFAULT, /* limited function */
552 USB_STATE_ADDRESS,
553 USB_STATE_CONFIGURED, /* most functions */
554
555 USB_STATE_SUSPENDED
556
557 /* NOTE: there are actually four different SUSPENDED
558 * states, returning to POWERED, DEFAULT, ADDRESS, or
559 * CONFIGURED respectively when SOF tokens flow again.
560 */
561};
562
563#endif /* __LINUX_USB_CH9_H */
diff --git a/include/linux/usb/serial.h b/include/linux/usb/serial.h
index 10f99e5f1a97..33dcd8576696 100644
--- a/include/linux/usb/serial.h
+++ b/include/linux/usb/serial.h
@@ -179,6 +179,9 @@ static inline void usb_set_serial_data (struct usb_serial *serial, void *data)
179 * memory structure allocation at this point in time. 179 * memory structure allocation at this point in time.
180 * @shutdown: pointer to the driver's shutdown function. This will be 180 * @shutdown: pointer to the driver's shutdown function. This will be
181 * called when the device is removed from the system. 181 * called when the device is removed from the system.
182 * @usb_driver: pointer to the struct usb_driver that controls this
183 * device. This is necessary to allow dynamic ids to be added to
184 * the driver from sysfs.
182 * 185 *
183 * This structure is defines a USB Serial driver. It provides all of 186 * This structure is defines a USB Serial driver. It provides all of
184 * the information that the USB serial core code needs. If the function 187 * the information that the USB serial core code needs. If the function
@@ -202,6 +205,8 @@ struct usb_serial_driver {
202 205
203 struct list_head driver_list; 206 struct list_head driver_list;
204 struct device_driver driver; 207 struct device_driver driver;
208 struct usb_driver *usb_driver;
209 struct usb_dynids dynids;
205 210
206 int (*probe) (struct usb_serial *serial, const struct usb_device_id *id); 211 int (*probe) (struct usb_serial *serial, const struct usb_device_id *id);
207 int (*attach) (struct usb_serial *serial); 212 int (*attach) (struct usb_serial *serial);