mirror of
https://github.com/reactos/reactos.git
synced 2025-05-29 22:18:13 +00:00
[USBCCGP]
- Handle IRP_MN_QUERY_INTERFACE svn path=/trunk/; revision=55968
This commit is contained in:
parent
cc99088ec9
commit
487dd93eed
1 changed files with 8 additions and 0 deletions
|
@ -414,6 +414,14 @@ PDO_HandlePnp(
|
|||
Status = STATUS_SUCCESS;
|
||||
break;
|
||||
}
|
||||
case IRP_MN_QUERY_INTERFACE:
|
||||
{
|
||||
//
|
||||
// forward to lower device object
|
||||
//
|
||||
IoSkipCurrentIrpStackLocation(Irp);
|
||||
return IoCallDriver(PDODeviceExtension->NextDeviceObject, Irp);
|
||||
}
|
||||
default:
|
||||
{
|
||||
//
|
||||
|
|
Loading…
Reference in a new issue