[USBPORT] Change debug message in USBPORT_RemoveDevice(().

This commit is contained in:
Vadim Galyant 2017-11-29 03:51:25 +09:00 committed by Amine Khaldi
parent 5e15ba48b9
commit 02d1cfd37f

View file

@ -1626,7 +1626,10 @@ USBPORT_RemoveDevice(IN PDEVICE_OBJECT FdoDevice,
USBPORT_FreeUsbAddress(FdoDevice, DeviceHandle->DeviceAddress);
}
DPRINT("USBPORT_RemoveDevice: DeviceHandle->TtList.Flink - %p\n", DeviceHandle->TtList.Flink);
if (!IsListEmpty(&DeviceHandle->TtList))
{
DPRINT1("USBPORT_RemoveDevice: DeviceHandle->TtList not empty\n");
}
while (!IsListEmpty(&DeviceHandle->TtList))
{