[USBHUB_NEW]

- Remove the hacky way of determining if a device connect occurred (prone to all sorts of race conditions) and just always create a device since the only reason we reset right now is for a device connect

svn path=/branches/usb-bringup-trunk/; revision=55186
This commit is contained in:
Cameron Gutman 2012-01-26 00:02:03 +00:00
parent 23f71216c4
commit bbd84c4171

View file

@ -402,13 +402,9 @@ DeviceStatusChangeThread(
}
//
// Create the device object only if the port manipulation was started by a device connect
// This is a new device
//
if (HubDeviceExtension->PortStatusChange[PortId-1].Status)
{
HubDeviceExtension->PortStatusChange[PortId-1].Status = 0;
Status = CreateUsbChildDeviceObject(DeviceObject, PortId, NULL);
}
Status = CreateUsbChildDeviceObject(DeviceObject, PortId, NULL);
}
}