aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/usb/host/isp1760-hcd.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/usb/host/isp1760-hcd.h')
-rw-r--r--drivers/usb/host/isp1760-hcd.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/usb/host/isp1760-hcd.h b/drivers/usb/host/isp1760-hcd.h
index 014a7dfadf91..fda0f2d54e3d 100644
--- a/drivers/usb/host/isp1760-hcd.h
+++ b/drivers/usb/host/isp1760-hcd.h
@@ -73,7 +73,6 @@ void deinit_kmem_cache(void);
73#define HC_EOT_INT (1 << 3) 73#define HC_EOT_INT (1 << 3)
74#define HC_SOT_INT (1 << 1) 74#define HC_SOT_INT (1 << 1)
75#define INTERRUPT_ENABLE_MASK (HC_INTL_INT | HC_ATL_INT) 75#define INTERRUPT_ENABLE_MASK (HC_INTL_INT | HC_ATL_INT)
76#define INTERRUPT_ENABLE_SOT_MASK (HC_SOT_INT)
77 76
78#define HC_ISO_IRQ_MASK_OR_REG 0x318 77#define HC_ISO_IRQ_MASK_OR_REG 0x318
79#define HC_INT_IRQ_MASK_OR_REG 0x31C 78#define HC_INT_IRQ_MASK_OR_REG 0x31C
@@ -107,6 +106,7 @@ struct ptd {
107struct slotinfo { 106struct slotinfo {
108 struct isp1760_qh *qh; 107 struct isp1760_qh *qh;
109 struct isp1760_qtd *qtd; 108 struct isp1760_qtd *qtd;
109 unsigned long timestamp;
110}; 110};
111 111
112 112
@@ -188,6 +188,7 @@ struct memory_chunk {
188#define DW3_BABBLE_BIT (1 << 29) 188#define DW3_BABBLE_BIT (1 << 29)
189#define DW3_HALT_BIT (1 << 30) 189#define DW3_HALT_BIT (1 << 30)
190#define DW3_ACTIVE_BIT (1 << 31) 190#define DW3_ACTIVE_BIT (1 << 31)
191#define FROM_DW3_ACTIVE(x) (((x) >> 31) & 0x01)
191 192
192#define INT_UNDERRUN (1 << 2) 193#define INT_UNDERRUN (1 << 2)
193#define INT_BABBLE (1 << 1) 194#define INT_BABBLE (1 << 1)