mirror of
https://github.com/reactos/reactos.git
synced 2025-04-05 13:11:22 +00:00
[USBPORT] Correcting USB2_InitTtEndpoint().
This commit is contained in:
parent
e262bb610d
commit
8b9d5d1514
1 changed files with 12 additions and 2 deletions
|
@ -284,8 +284,6 @@ USB2_InitTtEndpoint(IN PUSB2_TT_ENDPOINT TtEndpoint,
|
|||
IN USHORT MaxPacketSize,
|
||||
IN PUSB2_TT Tt)
|
||||
{
|
||||
RtlZeroMemory(TtEndpoint, sizeof(USB2_TT_ENDPOINT));
|
||||
|
||||
TtEndpoint->TtEndpointParams.TransferType = TransferType;
|
||||
TtEndpoint->TtEndpointParams.Direction = Direction;
|
||||
TtEndpoint->TtEndpointParams.DeviceSpeed = DeviceSpeed;
|
||||
|
@ -293,6 +291,18 @@ USB2_InitTtEndpoint(IN PUSB2_TT_ENDPOINT TtEndpoint,
|
|||
TtEndpoint->Period = Period;
|
||||
TtEndpoint->MaxPacketSize = MaxPacketSize;
|
||||
TtEndpoint->Tt = Tt;
|
||||
|
||||
TtEndpoint->CalcBusTime = 0;
|
||||
TtEndpoint->StartTime = 0;
|
||||
TtEndpoint->ActualPeriod = 0;
|
||||
TtEndpoint->StartFrame = 0;
|
||||
TtEndpoint->StartMicroframe = 0;
|
||||
|
||||
TtEndpoint->Nums.AsULONG = 0;
|
||||
TtEndpoint->NextTtEndpoint = NULL;
|
||||
TtEndpoint->Reserved2 = 0;
|
||||
TtEndpoint->PreviosPeriod = 0;
|
||||
TtEndpoint->IsPromoted = FALSE;
|
||||
}
|
||||
|
||||
BOOLEAN
|
||||
|
|
Loading…
Reference in a new issue