summaryrefslogtreecommitdiff
path: root/MdePkg
diff options
context:
space:
mode:
authorbxing <bxing@6f19259b-4bc3-4df7-8a09-765794883524>2006-07-25 07:37:25 +0000
committerbxing <bxing@6f19259b-4bc3-4df7-8a09-765794883524>2006-07-25 07:37:25 +0000
commit452e6c77beecbcc92c89cfa241857c2f5bd534bf (patch)
tree6164e2bac31a4685e86d4c4f80fa319b5d967356 /MdePkg
parented384ef31cff0681d724847c684476aed214917c (diff)
downloadedk2-452e6c77beecbcc92c89cfa241857c2f5bd534bf.zip
edk2-452e6c77beecbcc92c89cfa241857c2f5bd534bf.tar.gz
edk2-452e6c77beecbcc92c89cfa241857c2f5bd534bf.tar.bz2
Updated function headers according to latest MWG.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1090 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg')
-rw-r--r--MdePkg/Library/BaseTimerLibLocalApic/Ebc/EbcTimerLib.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/MdePkg/Library/BaseTimerLibLocalApic/Ebc/EbcTimerLib.c b/MdePkg/Library/BaseTimerLibLocalApic/Ebc/EbcTimerLib.c
index 7de360a..97cf3e2 100644
--- a/MdePkg/Library/BaseTimerLibLocalApic/Ebc/EbcTimerLib.c
+++ b/MdePkg/Library/BaseTimerLibLocalApic/Ebc/EbcTimerLib.c
@@ -21,7 +21,7 @@
@param MicroSeconds The minimum number of microseconds to delay.
- @return Return value depends on implementation.
+ @return MicroSeconds
**/
UINTN
@@ -34,7 +34,7 @@ MicroSecondDelay (
// EBC architecture does not support local APIC timer.
//
ASSERT (FALSE);
- return 0;
+ return MicroSeconds;
}
/**
@@ -44,7 +44,7 @@ MicroSecondDelay (
@param NanoSeconds The minimum number of nanoseconds to delay.
- @return Return value depends on implementation.
+ @return NanoSeconds
**/
UINTN
@@ -57,7 +57,7 @@ NanoSecondDelay (
// EBC architecture does not support local APIC timer.
//
ASSERT (FALSE);
- return 0;
+ return NanoSeconds;
}
/**
@@ -119,5 +119,5 @@ GetPerformanceCounterProperties (
// EBC architecture does not support local APIC timer.
//
ASSERT (FALSE);
- return 0;
+ return 0;
}