mirror of
https://github.com/reactos/reactos.git
synced 2026-06-20 02:17:31 +08:00
[USBHUB] Move DPRINT after check Status.
This commit is contained in:
committed by
Thomas Faber
parent
86af8d49fb
commit
c0f157e589
@@ -1136,10 +1136,6 @@ EnumStart:
|
||||
{
|
||||
PortData = &HubExtension->PortData[Port - 1];
|
||||
|
||||
DPRINT_ENUM("USBH_FdoQueryBusRelations: Port - %x, ConnectStatus - %x\n",
|
||||
Port,
|
||||
PortData->PortStatus.PortStatus.Usb20PortStatus.CurrentConnectStatus);
|
||||
|
||||
if (HubExtension->HubFlags & USBHUB_FDO_FLAG_DEVICE_FAILED)
|
||||
{
|
||||
continue;
|
||||
@@ -1152,11 +1148,16 @@ EnumStart:
|
||||
|
||||
if (!NT_SUCCESS(Status))
|
||||
{
|
||||
DPRINT_ENUM("USBH_FdoQueryBusRelations: Status - %X\n", Status);
|
||||
HubExtension->HubFlags |= USBHUB_FDO_FLAG_DEVICE_FAILED;
|
||||
DeviceRelations->Count = 0;
|
||||
goto EnumStart;
|
||||
}
|
||||
|
||||
DPRINT_ENUM("USBH_FdoQueryBusRelations: Port - %x, ConnectStatus - %x\n",
|
||||
Port,
|
||||
PortData->PortStatus.PortStatus.Usb20PortStatus.CurrentConnectStatus);
|
||||
|
||||
PdoDevice = PortData->DeviceObject;
|
||||
|
||||
if (PortData->DeviceObject)
|
||||
|
||||
Reference in New Issue
Block a user