mirror of https://github.com/acidanthera/audk.git
Update the description of Loaded Image Protocol Unload function to follow the UEFI2.3.1 Spec.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@11560 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
0269d14b82
commit
7eb2c64d34
|
@ -1,7 +1,7 @@
|
||||||
/** @file
|
/** @file
|
||||||
Entry point to a EFI/DXE driver.
|
Entry point to a EFI/DXE driver.
|
||||||
|
|
||||||
Copyright (c) 2006 - 2010, Intel Corporation. All rights reserved.<BR>
|
Copyright (c) 2006 - 2011, Intel Corporation. All rights reserved.<BR>
|
||||||
This program and the accompanying materials
|
This program and the accompanying materials
|
||||||
are licensed and made available under the terms and conditions of the BSD License
|
are licensed and made available under the terms and conditions of the BSD License
|
||||||
which accompanies this distribution. The full text of the license may be found at
|
which accompanies this distribution. The full text of the license may be found at
|
||||||
|
@ -25,11 +25,12 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||||
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Unload function that is registered in the LoadImage protocol. It un-installs
|
Unloads an image from memory.
|
||||||
protocols produced and deallocates pool used by the driver. Called by the core
|
|
||||||
when unloading the driver.
|
|
||||||
|
|
||||||
@param ImageHandle ImageHandle of the loaded driver.
|
This function is a callback that a driver registers to do cleanup
|
||||||
|
when the UnloadImage boot service function is called.
|
||||||
|
|
||||||
|
@param ImageHandle The handle to the image to unload.
|
||||||
|
|
||||||
@return Status returned by all unload().
|
@return Status returned by all unload().
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue