mirror of https://github.com/acidanthera/audk.git
PI 1.1 SMM Feature Check-in
1. Update SmmLib git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@9592 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
202c32790f
commit
4fd13cd57d
|
@ -77,4 +77,15 @@ IsRuntimeSoftwareSmi (
|
||||||
VOID
|
VOID
|
||||||
);
|
);
|
||||||
|
|
||||||
|
/**
|
||||||
|
|
||||||
|
Clear APM SMI Status Bit; Set the EOS bit.
|
||||||
|
|
||||||
|
**/
|
||||||
|
|
||||||
|
VOID
|
||||||
|
EFIAPI
|
||||||
|
ClearSmi (
|
||||||
|
VOID
|
||||||
|
);
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -87,3 +87,17 @@ IsRuntimeSoftwareSmi (
|
||||||
return FALSE;
|
return FALSE;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
|
||||||
|
Clear APM SMI Status Bit; Set the EOS bit.
|
||||||
|
|
||||||
|
**/
|
||||||
|
|
||||||
|
VOID
|
||||||
|
EFIAPI
|
||||||
|
ClearSmi (
|
||||||
|
VOID
|
||||||
|
)
|
||||||
|
{
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
Loading…
Reference in New Issue