Disable patch 15796 because it breaks the bootcd.

svn path=/trunk/; revision=15819
This commit is contained in:
Eric Kohl 2005-06-06 19:34:36 +00:00
parent 5e938a6c68
commit 794ac95666

View file

@ -892,6 +892,7 @@ IopSetDeviceInstanceData(HANDLE InstanceKey,
ZwClose(LogConfKey); ZwClose(LogConfKey);
} }
#if 0
if (DeviceNode->PhysicalDeviceObject != NULL) if (DeviceNode->PhysicalDeviceObject != NULL)
{ {
/* Create the 'Control' key */ /* Create the 'Control' key */
@ -924,6 +925,7 @@ IopSetDeviceInstanceData(HANDLE InstanceKey,
ZwClose(LogConfKey); ZwClose(LogConfKey);
} }
} }
#endif
DPRINT("IopSetDeviceInstanceData() done\n"); DPRINT("IopSetDeviceInstanceData() done\n");
@ -2017,6 +2019,7 @@ IopInvalidateDeviceRelations(
static NTSTATUS INIT_FUNCTION static NTSTATUS INIT_FUNCTION
IopSetRootDeviceInstanceData(PDEVICE_NODE DeviceNode) IopSetRootDeviceInstanceData(PDEVICE_NODE DeviceNode)
{ {
#if 0
PWSTR KeyBuffer; PWSTR KeyBuffer;
HANDLE InstanceKey = NULL; HANDLE InstanceKey = NULL;
NTSTATUS Status; NTSTATUS Status;
@ -2040,6 +2043,8 @@ IopSetRootDeviceInstanceData(PDEVICE_NODE DeviceNode)
ZwClose(InstanceKey); ZwClose(InstanceKey);
return Status; return Status;
#endif
return STATUS_SUCCESS;
} }