mirror of https://github.com/acidanthera/audk.git
1) Change DEBUG_ERROR TO DEBUG_LOAD as InstallProtocolInterface information is not an error.
2) Revert binary comparison for consistency. 3) Minor updates for comments. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5621 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
ed299e3c41
commit
1439777e96
|
@ -364,13 +364,13 @@ CoreInstallProtocolInterfaceNotify (
|
|||
//
|
||||
// Print debug message
|
||||
//
|
||||
DEBUG((DEBUG_ERROR | DEBUG_INFO, "InstallProtocolInterface: %g %p\n", Protocol, Interface));
|
||||
DEBUG((DEBUG_LOAD | DEBUG_INFO, "InstallProtocolInterface: %g %p\n", Protocol, Interface));
|
||||
|
||||
Status = EFI_OUT_OF_RESOURCES;
|
||||
Prot = NULL;
|
||||
Handle = NULL;
|
||||
|
||||
ASSERT (NULL != gDxeCoreBS);
|
||||
ASSERT (gDxeCoreBS != NULL);
|
||||
|
||||
if (*UserHandle != NULL_HANDLE) {
|
||||
Status = CoreHandleProtocol (*UserHandle, Protocol, (VOID **)&ExistingInterface);
|
||||
|
@ -1356,7 +1356,7 @@ CoreOpenProtocolInformation (
|
|||
|
||||
Done:
|
||||
//
|
||||
// Done. Release the database lock are return
|
||||
// Done. Release the database lock.
|
||||
//
|
||||
CoreReleaseProtocolLock ();
|
||||
return Status;
|
||||
|
|
Loading…
Reference in New Issue