[NTOS]: Root Bus PDO should not override Status with STATUS_NOT_IMPLEMENTED and instead use the current IRP status (which drivers/PnP will typically set to STATUS_NOT_SUPPORTED). Found by testing the new PCIx driver (probably fixes other bus drivers too).

svn path=/trunk/; revision=47389
This commit is contained in:
Sir Richard 2010-05-28 23:08:41 +00:00
parent 6b6a3291e8
commit 58055397a5

View file

@ -1085,7 +1085,6 @@ PnpRootPdoPnpControl(
default:
DPRINT1("IRP_MJ_PNP / Unknown minor function 0x%lx\n", IrpSp->MinorFunction);
Status = STATUS_NOT_IMPLEMENTED;
break;
}