Fix the invalid return code for OemHookStatusCodeLibNull library instance.

git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@3737 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
klu2
2007-08-30 03:32:27 +00:00
parent e30eb28cba
commit fd2537eff6
2 changed files with 3 additions and 3 deletions

View File

@ -57,7 +57,7 @@ OemHookStatusCodeInitialize (
@param Data This optional parameter may be used to pass additional data
@return The function always return EFI_UNSUPPORTED.
@return The function always return EFI_SUCCESS.
**/
EFI_STATUS
@ -70,6 +70,6 @@ OemHookStatusCodeReport (
IN EFI_STATUS_CODE_DATA *Data OPTIONAL
)
{
return EFI_UNSUPPORTED;
return EFI_SUCCESS;
}