mirror of
https://github.com/reactos/reactos.git
synced 2025-04-26 16:40:27 +00:00
Support IRP_MN_FILTER_RESOURCE_REQUIREMENTS
svn path=/trunk/; revision=27094
This commit is contained in:
parent
e19e754ce3
commit
bd0786560f
1 changed files with 7 additions and 0 deletions
|
@ -473,6 +473,13 @@ PciIdeXPdoPnpDispatch(
|
|||
Status = PciIdeXPdoQueryDeviceText(DeviceObject, Irp, &Information);
|
||||
break;
|
||||
}
|
||||
case IRP_MN_FILTER_RESOURCE_REQUIREMENTS: /* 0x0d */
|
||||
{
|
||||
DPRINT("IRP_MJ_PNP / IRP_MN_FILTER_RESOURCE_REQUIREMENTS\n");
|
||||
Information = Irp->IoStatus.Information;
|
||||
Status = Irp->IoStatus.Status;
|
||||
break;
|
||||
}
|
||||
case IRP_MN_QUERY_ID: /* 0x13 */
|
||||
{
|
||||
Status = PciIdeXPdoQueryId(DeviceObject, Irp, &Information);
|
||||
|
|
Loading…
Reference in a new issue