|
@@ -752,7 +752,7 @@ struct xhci_stream_ctx {
|
|
};
|
|
};
|
|
|
|
|
|
/* Stream Context Types (section 6.4.1) - bits 3:1 of stream ctx deq ptr */
|
|
/* Stream Context Types (section 6.4.1) - bits 3:1 of stream ctx deq ptr */
|
|
-#define SCT_FOR_CTX(p) (((p) << 1) & 0x7)
|
|
|
|
|
|
+#define SCT_FOR_CTX(p) (((p) & 0x7) << 1)
|
|
/* Secondary stream array type, dequeue pointer is to a transfer ring */
|
|
/* Secondary stream array type, dequeue pointer is to a transfer ring */
|
|
#define SCT_SEC_TR 0
|
|
#define SCT_SEC_TR 0
|
|
/* Primary stream array type, dequeue pointer is to a transfer ring */
|
|
/* Primary stream array type, dequeue pointer is to a transfer ring */
|