From ec82957d597a1256399af014e466656c4986c2ec Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Fri, 11 Nov 2011 20:41:10 +0000 Subject: [PATCH] [PNP] - Kill some debug spam svn path=/trunk/; revision=54352 --- reactos/base/services/umpnpmgr/umpnpmgr.c | 4 ++-- reactos/ntoskrnl/io/pnpmgr/pnpmgr.c | 2 +- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/reactos/base/services/umpnpmgr/umpnpmgr.c b/reactos/base/services/umpnpmgr/umpnpmgr.c index 05301b254f1..17b2a37a982 100644 --- a/reactos/base/services/umpnpmgr/umpnpmgr.c +++ b/reactos/base/services/umpnpmgr/umpnpmgr.c @@ -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)) diff --git a/reactos/ntoskrnl/io/pnpmgr/pnpmgr.c b/reactos/ntoskrnl/io/pnpmgr/pnpmgr.c index 3f3cb6a7cb3..3b0cd4e5595 100644 --- a/reactos/ntoskrnl/io/pnpmgr/pnpmgr.c +++ b/reactos/ntoskrnl/io/pnpmgr/pnpmgr.c @@ -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