mirror of
https://github.com/reactos/reactos.git
synced 2024-12-29 02:25:17 +00:00
[NTOS:PNP] Remove excessive error messages
This commit is contained in:
parent
1a6bd2704a
commit
fd9436d768
1 changed files with 4 additions and 1 deletions
|
@ -250,8 +250,11 @@ IopCreateDeviceInstancePath(
|
||||||
|
|
||||||
Status = IopQueryDeviceCapabilities(DeviceNode, &DeviceCapabilities);
|
Status = IopQueryDeviceCapabilities(DeviceNode, &DeviceCapabilities);
|
||||||
if (!NT_SUCCESS(Status))
|
if (!NT_SUCCESS(Status))
|
||||||
|
{
|
||||||
|
if (Status != STATUS_NOT_SUPPORTED)
|
||||||
{
|
{
|
||||||
DPRINT1("IopQueryDeviceCapabilities() failed (Status 0x%08lx)\n", Status);
|
DPRINT1("IopQueryDeviceCapabilities() failed (Status 0x%08lx)\n", Status);
|
||||||
|
}
|
||||||
RtlFreeUnicodeString(&DeviceId);
|
RtlFreeUnicodeString(&DeviceId);
|
||||||
return Status;
|
return Status;
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue