]> git.proxmox.com Git - mirror_edk2.git/commitdiff
Updated function headers according to latest MWG.
authorbxing <bxing@6f19259b-4bc3-4df7-8a09-765794883524>
Tue, 25 Jul 2006 07:37:25 +0000 (07:37 +0000)
committerbxing <bxing@6f19259b-4bc3-4df7-8a09-765794883524>
Tue, 25 Jul 2006 07:37:25 +0000 (07:37 +0000)
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1090 6f19259b-4bc3-4df7-8a09-765794883524

MdePkg/Library/BaseTimerLibLocalApic/Ebc/EbcTimerLib.c

index 7de360a0e67cbe57d0dac487af06e3c0e9d9ea37..97cf3e28aff10c6f7227a02b160d199452a1b006 100644 (file)
@@ -21,7 +21,7 @@
 \r
   @param  MicroSeconds  The minimum number of microseconds to delay.\r
 \r
-  @return Return value depends on implementation.\r
+  @return MicroSeconds\r
 \r
 **/\r
 UINTN\r
@@ -34,7 +34,7 @@ MicroSecondDelay (
   // EBC architecture does not support local APIC timer.\r
   //\r
   ASSERT (FALSE);\r
-  return 0;\r
+  return MicroSeconds;\r
 }\r
 \r
 /**\r
@@ -44,7 +44,7 @@ MicroSecondDelay (
 \r
   @param  NanoSeconds The minimum number of nanoseconds to delay.\r
 \r
-  @return Return value depends on implementation.\r
+  @return NanoSeconds\r
 \r
 **/\r
 UINTN\r
@@ -57,7 +57,7 @@ NanoSecondDelay (
   // EBC architecture does not support local APIC timer.\r
   //\r
   ASSERT (FALSE);\r
-  return 0;\r
+  return NanoSeconds;\r
 }\r
 \r
 /**\r
@@ -119,5 +119,5 @@ GetPerformanceCounterProperties (
   // EBC architecture does not support local APIC timer.\r
   //\r
   ASSERT (FALSE);\r
-  return 0;  \r
+  return 0;\r
 }\r