mirror of
https://github.com/acidanthera/audk.git
synced 2025-07-31 01:24:12 +02:00
Updated the function comments in UefiDriverEntryLib to fix EDKT502.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@2284 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
f176220269
commit
8c8a13bf5c
@ -12,6 +12,9 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|||||||
|
|
||||||
**/
|
**/
|
||||||
|
|
||||||
|
|
||||||
|
EFI_EVENT _mDriverExitBootServicesNotifyEvent;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Unload function that is registered in the LoadImage protocol. It un-installs
|
Unload function that is registered in the LoadImage protocol. It un-installs
|
||||||
protocols produced and deallocates pool used by the driver. Called by the core
|
protocols produced and deallocates pool used by the driver. Called by the core
|
||||||
@ -22,9 +25,6 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
|||||||
@retval EFI_SUCCESS
|
@retval EFI_SUCCESS
|
||||||
|
|
||||||
**/
|
**/
|
||||||
|
|
||||||
EFI_EVENT _mDriverExitBootServicesNotifyEvent;
|
|
||||||
|
|
||||||
EFI_STATUS
|
EFI_STATUS
|
||||||
EFIAPI
|
EFIAPI
|
||||||
_DriverUnloadHandler (
|
_DriverUnloadHandler (
|
||||||
@ -61,29 +61,21 @@ _DriverUnloadHandler (
|
|||||||
return Status;
|
return Status;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
/**
|
||||||
|
Notification Entry of ExitBootService event. In the entry, all notifications in _gDriverExitBootServicesEvent[]
|
||||||
|
would be invoked.
|
||||||
|
|
||||||
|
@param Event The Event that is being processed.
|
||||||
|
@param Context Event Context.
|
||||||
|
|
||||||
|
**/
|
||||||
VOID
|
VOID
|
||||||
EFIAPI
|
EFIAPI
|
||||||
_DriverExitBootServices (
|
_DriverExitBootServices (
|
||||||
IN EFI_EVENT Event,
|
IN EFI_EVENT Event,
|
||||||
IN VOID *Context
|
IN VOID *Context
|
||||||
)
|
)
|
||||||
/*++
|
|
||||||
|
|
||||||
Routine Description:
|
|
||||||
|
|
||||||
Set AtRuntime flag as TRUE after ExitBootServices
|
|
||||||
|
|
||||||
Arguments:
|
|
||||||
|
|
||||||
Event - The Event that is being processed
|
|
||||||
|
|
||||||
Context - Event Context
|
|
||||||
|
|
||||||
Returns:
|
|
||||||
|
|
||||||
None
|
|
||||||
|
|
||||||
--*/
|
|
||||||
{
|
{
|
||||||
EFI_EVENT_NOTIFY ChildNotifyEventHandler;
|
EFI_EVENT_NOTIFY ChildNotifyEventHandler;
|
||||||
UINTN Index;
|
UINTN Index;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user