mirror of https://github.com/acidanthera/audk.git
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:
parent
e30eb28cba
commit
fd2537eff6
|
@ -57,7 +57,7 @@ OemHookStatusCodeInitialize (
|
||||||
|
|
||||||
@param Data This optional parameter may be used to pass additional data
|
@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
|
EFI_STATUS
|
||||||
|
@ -70,6 +70,6 @@ OemHookStatusCodeReport (
|
||||||
IN EFI_STATUS_CODE_DATA *Data OPTIONAL
|
IN EFI_STATUS_CODE_DATA *Data OPTIONAL
|
||||||
)
|
)
|
||||||
{
|
{
|
||||||
return EFI_UNSUPPORTED;
|
return EFI_SUCCESS;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/** @file
|
/** @file
|
||||||
Library functions that abstract areas of conflict between Tiano an UEFI 2.0.
|
Library functions that abstract areas of conflict between Tiano an UEFI 2.0.
|
||||||
|
|
||||||
Help Port Framework/Tinao code that has conflicts with UEFI 2.0 by hiding the
|
Help Port Framework/Tiano code that has conflicts with UEFI 2.0 by hiding the
|
||||||
oldconflicts with library functions and supporting implementations of the old
|
oldconflicts with library functions and supporting implementations of the old
|
||||||
(EDK/EFI 1.10) and new (EDK II/UEFI 2.0) way. This module is a DXE driver as
|
(EDK/EFI 1.10) and new (EDK II/UEFI 2.0) way. This module is a DXE driver as
|
||||||
it contains DXE enum extensions for EFI event services.
|
it contains DXE enum extensions for EFI event services.
|
||||||
|
|
Loading…
Reference in New Issue