]> git.proxmox.com Git - mirror_edk2.git/commitdiff
Correct the unknown character and update ChangeLog.txt
authorlgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524>
Mon, 8 Dec 2008 01:42:01 +0000 (01:42 +0000)
committerlgao4 <lgao4@6f19259b-4bc3-4df7-8a09-765794883524>
Mon, 8 Dec 2008 01:42:01 +0000 (01:42 +0000)
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6911 6f19259b-4bc3-4df7-8a09-765794883524

MdePkg/ChangeLog.txt
MdePkg/Include/Base.h
MdePkg/Include/Library/PrintLib.h

index ba0bed9759ea3b5e007629fd5561ff215d209080..86cb910fb3b38a25ae3fa88f4ea38147f42b00b0 100644 (file)
@@ -237,3 +237,9 @@ Possible Impacts:
        EFI_TIMER_PERIOD_MICROSECONDS(X), EFI_TIMER_PERIOD_MILLISECONDS(X) and EFI_TIMER_PERIOD_SECONDS(X) for managing Timer Events.\r
        Especailly, EFI_SCSI_STALL_SECONDS(a) is simply replaced by EFI_TIMER_PERIOD_SECONDS(a)\r
 \r
+EDK_6886:  Non-Compatible: mdkinney\r
+       \r
+       Rename _CR macro in MdePkg\Include\Base.h to BASE_CR macro aligned to MdeLib spec.\r
+\r
+Possible Impacts:\r
+       All source codes that depends on _CR macro must be changed to use BASE_CR.      \r
index d1b6c82f6ddaeb1c0609ae58c42be309a1bfe4df..b7b65697872ed700f25c9079c318398745943723 100644 (file)
@@ -223,6 +223,13 @@ struct _LIST_ENTRY {
 //  }\r
 //\r
 \r
+/**\r
+  Return the size of argument that has been aligned to sizeof (UINTN).\r
+\r
+  @param  n    The parameter size is to be aligned.\r
+\r
+  @return The aligned size\r
+**/\r
 #define _INT_SIZE_OF(n) ((sizeof (n) + sizeof (UINTN) - 1) &~(sizeof (UINTN) - 1))\r
 \r
 ///\r
index 4797f536118db5bab313f44eb87e8d219e054466..1b3fa1e2ad8a014a2f9ee3c180079a51c4ff5d0b 100644 (file)
@@ -72,11 +72,11 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
         using this type too by making sure bits 8..15 of the argument are set to 0.\r
     - x\r
       - The argument is a hexadecimal number.  The characters used are 0..9 and \r
-        A..F.  If the flag \91L\92 is not specified, then the argument is assumed \r
+        A..F.  If the flag 'L' is not specified, then the argument is assumed \r
         to be an int.  This does not follow ANSI C.\r
     - X\r
       - The argument is a hexadecimal number and the number is padded with \r
-        zeros.  This is equivalent to a format string of \930x\94 If the flag \r
+        zeros.  This is equivalent to a format string of "0X". If the flag \r
         'L' is not specified, then the argument is assumed to be an int.  \r
         This does not follow ANSI C.\r
     - d\r
@@ -97,7 +97,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
         This does not follow ANSI C.\r
     - t\r
       - The argument is a pointer to an EFI_TIME structure.  The time and \r
-        date are printed in the format \93mm/dd/yyyy  hh:mm\94, where mm is the \r
+        date are printed in the format "mm/dd/yyyy hh:mm" where mm is the \r
         month zero padded, dd is the day zero padded, yyyy is the year zero \r
         padded, hh is the hour zero padded, and mm is minutes zero padded.  \r
         This does not follow ANSI C. \r