mirror of https://github.com/acidanthera/audk.git
Committing changes to the comments, to improve code documentation.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@8841 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
3d8bd97c27
commit
727fed5a44
|
@ -36,8 +36,8 @@ OemHookStatusCodeInitialize (
|
||||||
@param CodeType Indicates the type of status code being reported. Type EFI_STATUS_CODE_TYPE is defined in "Related Definitions" below.
|
@param CodeType Indicates the type of status code being reported. Type EFI_STATUS_CODE_TYPE is defined in "Related Definitions" below.
|
||||||
|
|
||||||
@param Value Describes the current status of a hardware or software entity.
|
@param Value Describes the current status of a hardware or software entity.
|
||||||
This included information about the class and subclass that is used to classify the entity
|
This includes both an operation and classification information about the class and subclass.
|
||||||
as well as an operation. For progress codes, the operation is the current activity.
|
For progress codes, the operation is the current activity.
|
||||||
For error codes, it is the exception. For debug codes, it is not defined at this time.
|
For error codes, it is the exception. For debug codes, it is not defined at this time.
|
||||||
Type EFI_STATUS_CODE_VALUE is defined in "Related Definitions" below.
|
Type EFI_STATUS_CODE_VALUE is defined in "Related Definitions" below.
|
||||||
Specific values are discussed in the Intel? Platform Innovation Framework for EFI Status Code Specification.
|
Specific values are discussed in the Intel? Platform Innovation Framework for EFI Status Code Specification.
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
/** @file
|
/** @file
|
||||||
Platform BDS library definition. Platform can implement an
|
Platform BDS library definition. A platform can implement
|
||||||
instances to support the platform specific behavior.
|
instances to support platform-specific behavior.
|
||||||
|
|
||||||
Copyright (c) 2008 - 2009, Intel Corporation. <BR>
|
Copyright (c) 2008 - 2009, Intel Corporation. <BR>
|
||||||
All rights reserved. This program and the accompanying materials
|
All rights reserved. This program and the accompanying materials
|
||||||
|
@ -21,7 +21,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||||
#include <Library/GenericBdsLib.h>
|
#include <Library/GenericBdsLib.h>
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Platform Bds init. Include the platform firmware vendor, revision
|
Platform Bds initialization. Includes the platform firmware vendor, revision
|
||||||
and so crc check.
|
and so crc check.
|
||||||
|
|
||||||
**/
|
**/
|
||||||
|
@ -69,9 +69,9 @@ PlatformBdsBootFail (
|
||||||
Hook point after a boot attempt succeeds. We don't expect a boot option to
|
Hook point after a boot attempt succeeds. We don't expect a boot option to
|
||||||
return, so the UEFI 2.0 specification defines that you will default to an
|
return, so the UEFI 2.0 specification defines that you will default to an
|
||||||
interactive mode and stop processing the BootOrder list in this case. This
|
interactive mode and stop processing the BootOrder list in this case. This
|
||||||
is alos a platform implementation and can be customized by IBV/OEM.
|
is also a platform implementation, and can be customized by an IBV/OEM.
|
||||||
|
|
||||||
@param Option Pointer to Boot Option that succeeded to boot.
|
@param Option Pointer to Boot Option that successfully booted.
|
||||||
|
|
||||||
**/
|
**/
|
||||||
VOID
|
VOID
|
||||||
|
|
Loading…
Reference in New Issue