2007-01-26 21:26:21 +08: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-08 02:45:32 +08:00
|
|
|
#ifndef __LINUX_USB_QUIRKS_H
|
|
|
|
#define __LINUX_USB_QUIRKS_H
|
|
|
|
|
2007-01-26 21:26:21 +08:00
|
|
|
/* string descriptors must not be fetched using a 255-byte read */
|
2007-09-22 04:57:54 +08:00
|
|
|
#define USB_QUIRK_STRING_FETCH_255 0x00000001
|
2007-05-04 23:53:03 +08:00
|
|
|
|
|
|
|
/* device can't resume correctly so reset it instead */
|
2007-09-22 04:57:54 +08:00
|
|
|
#define USB_QUIRK_RESET_RESUME 0x00000002
|
2008-03-11 22:20:12 +08:00
|
|
|
|
|
|
|
/* device can't handle Set-Interface requests */
|
|
|
|
#define USB_QUIRK_NO_SET_INTF 0x00000004
|
2008-03-08 02:45:32 +08:00
|
|
|
|
2009-03-19 02:28:53 +08:00
|
|
|
/* device can't handle its Configuration or Interface strings */
|
|
|
|
#define USB_QUIRK_CONFIG_INTF_STRINGS 0x00000008
|
|
|
|
|
2008-03-08 02:45:32 +08:00
|
|
|
#endif /* __LINUX_USB_QUIRKS_H */
|