From 794ac95666c04f13d9a081cb72d3814d2cc88b07 Mon Sep 17 00:00:00 2001 From: Eric Kohl Date: Mon, 6 Jun 2005 19:34:36 +0000 Subject: [PATCH] Disable patch 15796 because it breaks the bootcd. svn path=/trunk/; revision=15819 --- reactos/ntoskrnl/io/pnpmgr.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/reactos/ntoskrnl/io/pnpmgr.c b/reactos/ntoskrnl/io/pnpmgr.c index 08c6d6a5434..391570dda1a 100644 --- a/reactos/ntoskrnl/io/pnpmgr.c +++ b/reactos/ntoskrnl/io/pnpmgr.c @@ -892,6 +892,7 @@ IopSetDeviceInstanceData(HANDLE InstanceKey, ZwClose(LogConfKey); } +#if 0 if (DeviceNode->PhysicalDeviceObject != NULL) { /* Create the 'Control' key */ @@ -924,6 +925,7 @@ IopSetDeviceInstanceData(HANDLE InstanceKey, ZwClose(LogConfKey); } } +#endif DPRINT("IopSetDeviceInstanceData() done\n"); @@ -2017,6 +2019,7 @@ IopInvalidateDeviceRelations( static NTSTATUS INIT_FUNCTION IopSetRootDeviceInstanceData(PDEVICE_NODE DeviceNode) { +#if 0 PWSTR KeyBuffer; HANDLE InstanceKey = NULL; NTSTATUS Status; @@ -2040,6 +2043,8 @@ IopSetRootDeviceInstanceData(PDEVICE_NODE DeviceNode) ZwClose(InstanceKey); return Status; +#endif + return STATUS_SUCCESS; } -- 2.17.1