mirror of
https://github.com/reactos/reactos.git
synced 2025-08-05 20:33:04 +00:00
[NTOS]
- Silence some more debug prints svn path=/trunk/; revision=74273
This commit is contained in:
parent
048ad653f4
commit
ee47b6c3f0
3 changed files with 6 additions and 4 deletions
|
@ -510,7 +510,7 @@ done:
|
||||||
if (ProfileHandle)
|
if (ProfileHandle)
|
||||||
NtClose(ProfileHandle);
|
NtClose(ProfileHandle);
|
||||||
|
|
||||||
DPRINT1("CmpCreateHardwareProfile() done\n");
|
DPRINT("CmpCreateHardwareProfile() done\n");
|
||||||
|
|
||||||
return Status;
|
return Status;
|
||||||
}
|
}
|
||||||
|
|
|
@ -452,7 +452,6 @@ IopInitializePlugPlayServices(VOID)
|
||||||
if (Disposition == REG_CREATED_NEW_KEY)
|
if (Disposition == REG_CREATED_NEW_KEY)
|
||||||
{
|
{
|
||||||
/* FIXME: DACLs */
|
/* FIXME: DACLs */
|
||||||
DPRINT1("Need to build DACL\n");
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Create the root key */
|
/* Create the root key */
|
||||||
|
|
|
@ -688,7 +688,7 @@ IopStartDevice2(IN PDEVICE_OBJECT DeviceObject)
|
||||||
Status = IopQueryDeviceCapabilities(DeviceNode, &DeviceCapabilities);
|
Status = IopQueryDeviceCapabilities(DeviceNode, &DeviceCapabilities);
|
||||||
if (!NT_SUCCESS(Status))
|
if (!NT_SUCCESS(Status))
|
||||||
{
|
{
|
||||||
DPRINT1("IopInitiatePnpIrp() failed (Status 0x%08lx)\n", Status);
|
DPRINT("IopInitiatePnpIrp() failed (Status 0x%08lx)\n", Status);
|
||||||
}
|
}
|
||||||
|
|
||||||
/* Invalidate device state so IRP_MN_QUERY_PNP_DEVICE_STATE is sent */
|
/* Invalidate device state so IRP_MN_QUERY_PNP_DEVICE_STATE is sent */
|
||||||
|
@ -855,7 +855,10 @@ IopQueryDeviceCapabilities(PDEVICE_NODE DeviceNode,
|
||||||
&Stack);
|
&Stack);
|
||||||
if (!NT_SUCCESS(Status))
|
if (!NT_SUCCESS(Status))
|
||||||
{
|
{
|
||||||
DPRINT1("IRP_MN_QUERY_CAPABILITIES failed with status 0x%x\n", Status);
|
if (Status != STATUS_NOT_SUPPORTED)
|
||||||
|
{
|
||||||
|
DPRINT1("IRP_MN_QUERY_CAPABILITIES failed with status 0x%lx\n", Status);
|
||||||
|
}
|
||||||
return Status;
|
return Status;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue