Skip to content

Commit

Permalink
[LIBUSB] HACK: delay 100 ms
Browse files Browse the repository at this point in the history
FIXME: QueryStatusChangeEndpoint()
         KeStallExecutionProcessor(100000);
  • Loading branch information
vgalnt committed Mar 22, 2016
1 parent 23ffdfb commit dfe08c2
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion reactos/lib/drivers/libusb/hub_controller.cpp
Expand Up @@ -324,7 +324,8 @@ CHubController::QueryStatusChangeEndpoint(
m_Hardware->GetPortStatus(PortId, &PortStatus, &PortChange);

DPRINT("[%s] Port %d: Status %x, Change %x\n", m_USBType, PortId, PortStatus, PortChange);

DPRINT1("QueryStatusChangeEndpoint: FIXME KeStallExecutionProcessor(100000)\n");
KeStallExecutionProcessor(100000); //100 msec

//
// If there's a flag in PortChange return TRUE so the SCE Irp will be completed
Expand Down

0 comments on commit dfe08c2

Please sign in to comment.