Revert "xhci: Fix incorrect stream context type macro"
This reverts commit 26ca5dede5
.
This commit is contained in:
parent
d4d4ab32a4
commit
af649ff977
1 changed files with 1 additions and 1 deletions
|
@ -1285,7 +1285,7 @@ enum xhci_setup_dev {
|
|||
/* Set TR Dequeue Pointer command TRB fields, 6.4.3.9 */
|
||||
#define TRB_TO_STREAM_ID(p) ((((p) & (0xffff << 16)) >> 16))
|
||||
#define STREAM_ID_FOR_TRB(p) ((((p)) & 0xffff) << 16)
|
||||
#define SCT_FOR_TRB(p) (((p) & 0x7) << 1)
|
||||
#define SCT_FOR_TRB(p) (((p) << 1) & 0x7)
|
||||
|
||||
/* Link TRB specific fields */
|
||||
#define TRB_TC (1<<1)
|
||||
|
|
Loading…
Reference in a new issue