- Kill some debug spam

svn path=/trunk/; revision=54352
This commit is contained in:
Cameron Gutman 2011-11-11 20:41:10 +00:00
parent 46ea3777a8
commit ec82957d59
2 changed files with 3 additions and 3 deletions

View file

@ -3141,7 +3141,7 @@ PnpEventThread(LPVOID lpParameter)
DWORD len;
DWORD DeviceIdLength;
DPRINT1("Device enumerated: %S\n", PnpEvent->TargetDevice.DeviceIds);
DPRINT("Device enumerated: %S\n", PnpEvent->TargetDevice.DeviceIds);
DeviceIdLength = lstrlenW(PnpEvent->TargetDevice.DeviceIds);
if (DeviceIdLength)
@ -3163,7 +3163,7 @@ PnpEventThread(LPVOID lpParameter)
}
else if (UuidEqual(&PnpEvent->EventGuid, (UUID*)&GUID_DEVICE_ARRIVAL, &RpcStatus))
{
DPRINT1("Device arrival: %S\n", PnpEvent->TargetDevice.DeviceIds);
DPRINT("Device arrival: %S\n", PnpEvent->TargetDevice.DeviceIds);
/* FIXME: ? */
}
else if (UuidEqual(&PnpEvent->EventGuid, (UUID*)&GUID_DEVICE_EJECT_VETOED, &RpcStatus))

View file

@ -2115,7 +2115,7 @@ IopActionConfigureChildServices(PDEVICE_NODE DeviceNode,
/* Device has a ClassGUID value, but no Service value.
* Suppose it is using the NULL driver, so state the
* device is started */
DPRINT1("%wZ is using NULL driver\n", &DeviceNode->InstancePath);
DPRINT("%wZ is using NULL driver\n", &DeviceNode->InstancePath);
IopDeviceNodeSetFlag(DeviceNode, DNF_STARTED);
}
else