mirror of
https://github.com/reactos/reactos.git
synced 2024-11-04 22:00:55 +00:00
[USBPORT] Correcting USB2_DeallocateEndpointBudget().
This commit is contained in:
parent
bc9046c635
commit
57f092106a
1 changed files with 13 additions and 1 deletions
|
@ -1057,11 +1057,23 @@ USB2_DeallocateEndpointBudget(IN PUSB2_TT_ENDPOINT TtEndpoint,
|
|||
PUSB2_TT Tt;
|
||||
PUSB2_HC_EXTENSION HcExtension;
|
||||
ULONG Speed;
|
||||
ULONG TransferType;
|
||||
ULONG Frame;
|
||||
ULONG StartMicroframe;
|
||||
ULONG ix;
|
||||
|
||||
PUSB2_TT_ENDPOINT endpoint;
|
||||
PUSB2_TT_ENDPOINT nextEndpoint;
|
||||
PUSB2_TT_ENDPOINT lastEndpoint;
|
||||
PUSB2_TT_ENDPOINT tmpEndpoint;
|
||||
ULONG endTime;
|
||||
ULONG maxEndTime;
|
||||
ULONG lastEndTime;
|
||||
ULONG Factor;
|
||||
ULONG jx;
|
||||
UCHAR frame;
|
||||
UCHAR uframe;
|
||||
USHORT Period;
|
||||
BOOLEAN IsMoved = FALSE;
|
||||
|
||||
DPRINT("USB2_DeallocateEndpointBudget: TtEndpoint - %p, MaxFrames - %X\n",
|
||||
TtEndpoint,
|
||||
|
|
Loading…
Reference in a new issue