We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b3b98de commit d1f4b36Copy full SHA for d1f4b36
drivers/usb/usbhub/pdo.c
@@ -635,17 +635,20 @@ USBHUB_PdoHandlePnp(
635
}
636
case IRP_MN_QUERY_DEVICE_TEXT:
637
{
638
+ DPRINT("IRP_MN_QUERY_DEVICE_TEXT\n");
639
Status = USBHUB_PdoQueryDeviceText(DeviceObject, Irp, &Information);
640
break;
641
642
case IRP_MN_QUERY_ID:
643
644
+ DPRINT("IRP_MN_QUERY_ID\n");
645
Status = USBHUB_PdoQueryId(DeviceObject, Irp, &Information);
646
647
648
case IRP_MN_QUERY_BUS_INFORMATION:
649
650
PPNP_BUS_INFORMATION BusInfo;
651
+ DPRINT("IRP_MN_QUERY_BUS_INFORMATION\n");
652
BusInfo = (PPNP_BUS_INFORMATION)ExAllocatePool(PagedPool, sizeof(PNP_BUS_INFORMATION));
653
RtlCopyMemory(&BusInfo->BusTypeGuid,
654
&GUID_BUS_TYPE_USB,
0 commit comments