[USBPORT] Add stubs for USB2_AllocateHS() and USB2_DeallocateEndpointBudget().

This commit is contained in:
Vadim Galyant 2017-12-01 10:18:50 +09:00 committed by Amine Khaldi
parent e39b88e3e7
commit 5654674e8c

View file

@ -250,6 +250,27 @@ USB2_InitTtEndpoint(IN PUSB2_TT_ENDPOINT TtEndpoint,
TtEndpoint->Tt = Tt;
}
BOOLEAN
NTAPI
USB2_AllocateHS(IN PUSB2_TT_ENDPOINT TtEndpoint,
IN ULONG Frame)
{
DPRINT("USB2_AllocateHS: UNIMPLEMENTED FIXME\n");
return FALSE;
}
BOOLEAN
NTAPI
USB2_DeallocateEndpointBudget(IN PUSB2_TT_ENDPOINT TtEndpoint,
IN PUSB2_REBALANCE Rebalance,
IN PULONG RebalanceListEntries,
IN ULONG MaxFrames)
{
DPRINT("USB2_DeallocateEndpointBudget: UNIMPLEMENTED FIXME\n");
ASSERT(FALSE);
return FALSE;
}
BOOLEAN
NTAPI
USB2_AllocateTimeForEndpoint(IN PUSB2_TT_ENDPOINT TtEndpoint,