diff options
-rw-r--r-- | drivers/usb/host/uhci-hcd.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/drivers/usb/host/uhci-hcd.h b/drivers/usb/host/uhci-hcd.h index 7af2b7052047..6f986d82472d 100644 --- a/drivers/usb/host/uhci-hcd.h +++ b/drivers/usb/host/uhci-hcd.h | |||
@@ -212,10 +212,6 @@ struct uhci_qh { | |||
212 | #define TD_CTRL_BITSTUFF (1 << 17) /* Bit Stuff Error */ | 212 | #define TD_CTRL_BITSTUFF (1 << 17) /* Bit Stuff Error */ |
213 | #define TD_CTRL_ACTLEN_MASK 0x7FF /* actual length, encoded as n - 1 */ | 213 | #define TD_CTRL_ACTLEN_MASK 0x7FF /* actual length, encoded as n - 1 */ |
214 | 214 | ||
215 | #define TD_CTRL_ANY_ERROR (TD_CTRL_STALLED | TD_CTRL_DBUFERR | \ | ||
216 | TD_CTRL_BABBLE | TD_CTRL_CRCTIME | \ | ||
217 | TD_CTRL_BITSTUFF) | ||
218 | |||
219 | #define uhci_maxerr(err) ((err) << TD_CTRL_C_ERR_SHIFT) | 215 | #define uhci_maxerr(err) ((err) << TD_CTRL_C_ERR_SHIFT) |
220 | #define uhci_status_bits(ctrl_sts) ((ctrl_sts) & 0xF60000) | 216 | #define uhci_status_bits(ctrl_sts) ((ctrl_sts) & 0xF60000) |
221 | #define uhci_actual_length(ctrl_sts) (((ctrl_sts) + 1) & \ | 217 | #define uhci_actual_length(ctrl_sts) (((ctrl_sts) + 1) & \ |