]> git.proxmox.com Git - mirror_edk2.git/commitdiff
MdePkg Base.h: Fix typo funcation to function
authorStar Zeng <star.zeng@intel.com>
Fri, 8 Jul 2016 01:31:13 +0000 (09:31 +0800)
committerStar Zeng <star.zeng@intel.com>
Sat, 9 Jul 2016 02:13:57 +0000 (10:13 +0800)
Cc: Liming Gao <liming.gao@intel.com>
Cc: Michael D Kinney <michael.d.kinney@intel.com>
Cc: Jiewen Yao <jiewen.yao@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Star Zeng <star.zeng@intel.com>
Reviewed-by: Liming Gao <liming.gao@intel.com>
MdePkg/Include/Base.h

index cbd9e552d0464653354b8a5a7db5735d7a0c7675..858385828d933ff999677e83362f0b06493d15c1 100644 (file)
@@ -1146,7 +1146,7 @@ typedef UINTN RETURN_STATUS;
 #if defined(_MSC_EXTENSIONS) && !defined (__INTEL_COMPILER) && !defined (MDE_CPU_EBC)\r
   #pragma intrinsic(_ReturnAddress)\r
   /**\r
-    Get the return address of the calling funcation.\r
+    Get the return address of the calling function.\r
 \r
     Based on intrinsic function _ReturnAddress that provides the address of\r
     the instruction in the calling function that will be executed after\r
@@ -1154,27 +1154,27 @@ typedef UINTN RETURN_STATUS;
 \r
     @param L    Return Level.\r
 \r
-    @return The return address of the calling funcation or 0 if L != 0.\r
+    @return The return address of the calling function or 0 if L != 0.\r
 \r
   **/\r
   #define RETURN_ADDRESS(L)     ((L == 0) ? _ReturnAddress() : (VOID *) 0)\r
 #elif defined(__GNUC__)\r
   void * __builtin_return_address (unsigned int level);\r
   /**\r
-    Get the return address of the calling funcation.\r
+    Get the return address of the calling function.\r
 \r
     Based on built-in Function __builtin_return_address that returns\r
     the return address of the current function, or of one of its callers.\r
 \r
     @param L    Return Level.\r
 \r
-    @return The return address of the calling funcation.\r
+    @return The return address of the calling function.\r
 \r
   **/\r
   #define RETURN_ADDRESS(L)     __builtin_return_address (L)\r
 #else\r
   /**\r
-    Get the return address of the calling funcation.\r
+    Get the return address of the calling function.\r
 \r
     @param L    Return Level.\r
 \r