From 58055397a54b343a278273076ae8c8762879c3bd Mon Sep 17 00:00:00 2001 From: Sir Richard Date: Fri, 28 May 2010 23:08:41 +0000 Subject: [PATCH] [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 --- reactos/ntoskrnl/io/pnpmgr/pnproot.c | 1 - 1 file changed, 1 deletion(-) diff --git a/reactos/ntoskrnl/io/pnpmgr/pnproot.c b/reactos/ntoskrnl/io/pnpmgr/pnproot.c index 6f1834e5298..fb05da9e8d5 100644 --- a/reactos/ntoskrnl/io/pnpmgr/pnproot.c +++ b/reactos/ntoskrnl/io/pnpmgr/pnproot.c @@ -1085,7 +1085,6 @@ PnpRootPdoPnpControl( default: DPRINT1("IRP_MJ_PNP / Unknown minor function 0x%lx\n", IrpSp->MinorFunction); - Status = STATUS_NOT_IMPLEMENTED; break; }