mirror of
https://github.com/reactos/reactos.git
synced 2026-05-30 14:34:57 +08:00
[NTOS:PNP] Remove excessive error messages
This commit is contained in:
@@ -251,7 +251,10 @@ IopCreateDeviceInstancePath(
|
||||
Status = IopQueryDeviceCapabilities(DeviceNode, &DeviceCapabilities);
|
||||
if (!NT_SUCCESS(Status))
|
||||
{
|
||||
DPRINT1("IopQueryDeviceCapabilities() failed (Status 0x%08lx)\n", Status);
|
||||
if (Status != STATUS_NOT_SUPPORTED)
|
||||
{
|
||||
DPRINT1("IopQueryDeviceCapabilities() failed (Status 0x%08lx)\n", Status);
|
||||
}
|
||||
RtlFreeUnicodeString(&DeviceId);
|
||||
return Status;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user