mirror of
https://github.com/reactos/reactos.git
synced 2025-02-23 17:05:46 +00:00
- Add more debug prints in failure cases.
svn path=/trunk/; revision=30172
This commit is contained in:
parent
fffed3ea73
commit
8bf9fc912d
1 changed files with 8 additions and 0 deletions
|
@ -1097,7 +1097,10 @@ CreatePortConfig:
|
|||
FirstConfigCall);
|
||||
|
||||
if (!NT_SUCCESS(Status))
|
||||
{
|
||||
DPRINT1("SpiCreatePortConfig() failed with Status 0x%08X\n", Status);
|
||||
break;
|
||||
}
|
||||
|
||||
/* Allocate and initialize port configuration info */
|
||||
PortConfigSize = (sizeof(PORT_CONFIGURATION_INFORMATION) +
|
||||
|
@ -5600,9 +5603,14 @@ TryNextAd:
|
|||
else
|
||||
{
|
||||
/* Info was not found, exit */
|
||||
DPRINT1("ZwOpenKey() failed with Status=0x%08X\n", Status);
|
||||
return STATUS_DEVICE_DOES_NOT_EXIST;
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
DPRINT1("ZwOpenKey() failed with Status=0x%08X\n", Status);
|
||||
}
|
||||
}
|
||||
|
||||
/* Look at device params */
|
||||
|
|
Loading…
Reference in a new issue