X-Git-Url: https://git.proxmox.com/?a=blobdiff_plain;f=MdePkg%2FInclude%2FLibrary%2FPostCodeLib.h;h=9a7a9e6a9967962dad9c3d81b63662f1aac1ea87;hb=62ec4a5ef674846f3edd0317e59b0c509873b3b5;hp=86ad1c67613af18e36edf8508f14c8b09f5de223;hpb=122e21915101b8f38d81edc6d4f1fd1dd353e28a;p=mirror_edk2.git diff --git a/MdePkg/Include/Library/PostCodeLib.h b/MdePkg/Include/Library/PostCodeLib.h index 86ad1c6761..9a7a9e6a99 100644 --- a/MdePkg/Include/Library/PostCodeLib.h +++ b/MdePkg/Include/Library/PostCodeLib.h @@ -1,8 +1,8 @@ /** @file Provides services to send progress/error codes to a POST card. -Copyright (c) 2006 - 2008, Intel Corporation -All rights reserved. This program and the accompanying materials +Copyright (c) 2006 - 2008, Intel Corporation. All rights reserved.
+This program and the accompanying materials 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 http://opensource.org/licenses/bsd-license.php @@ -19,7 +19,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. #define POST_CODE_PROPERTY_POST_CODE_DESCRIPTION_ENABLED 0x00000010 /** - Sends an 32-bit value to a POST card. + Sends a 32-bit value to a POST card. Sends the 32-bit value specified by Value to a POST card, and returns Value. Some implementations of this library function may perform I/O operations @@ -28,7 +28,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. display the 32-bit value on the status reporting device. PostCode() must actively prevent recursion. If PostCode() is called while - processing another any other Post Code Library function, then + processing another Post Code Library function, then PostCode() must return Value immediately. @param Value The 32-bit value to write to the POST card. @@ -44,7 +44,7 @@ PostCode ( /** - Sends an 32-bit value to a POST and associated ASCII string. + Sends a 32-bit value to a POST and associated ASCII string. Sends the 32-bit value specified by Value to a POST card, and returns Value. If Description is not NULL, then the ASCII string specified by Description is @@ -114,7 +114,7 @@ PostCodeDescriptionEnabled ( /** - Sends an 32-bit value to a POST card. + Sends a 32-bit value to a POST card. If POST codes are enabled in PcdPostCodeProperyMask, then call PostCode() passing in Value. Value is returned. @@ -127,7 +127,7 @@ PostCodeDescriptionEnabled ( #define POST_CODE(Value) PostCodeEnabled() ? PostCode(Value) : Value /** - Sends an 32-bit value to a POST and associated ASCII string. + Sends a 32-bit value to a POST and associated ASCII string. If POST codes and POST code descriptions are enabled in PcdPostCodeProperyMask, then call PostCodeWithDescription() passing in