2007-01-26 14:26:21 +01:00
|
|
|
/*
|
|
|
|
* This file holds the definitions of quirks found in USB devices.
|
|
|
|
* Only quirks that affect the whole device, not an interface,
|
|
|
|
* belong here.
|
|
|
|
*/
|
|
|
|
|
2008-03-07 19:45:32 +01:00
|
|
|
#ifndef __LINUX_USB_QUIRKS_H
|
|
|
|
#define __LINUX_USB_QUIRKS_H
|
|
|
|
|
2007-01-26 14:26:21 +01:00
|
|
|
/* string descriptors must not be fetched using a 255-byte read */
|
2007-09-21 22:57:54 +02:00
|
|
|
#define USB_QUIRK_STRING_FETCH_255 0x00000001
|
2007-05-04 17:53:03 +02:00
|
|
|
|
|
|
|
/* device can't resume correctly so reset it instead */
|
2007-09-21 22:57:54 +02:00
|
|
|
#define USB_QUIRK_RESET_RESUME 0x00000002
|
2008-03-11 15:20:12 +01:00
|
|
|
|
|
|
|
/* device can't handle Set-Interface requests */
|
|
|
|
#define USB_QUIRK_NO_SET_INTF 0x00000004
|
2008-03-07 19:45:32 +01:00
|
|
|
|
|
|
|
#endif /* __LINUX_USB_QUIRKS_H */
|