From 452e6c77beecbcc92c89cfa241857c2f5bd534bf Mon Sep 17 00:00:00 2001 From: bxing Date: Tue, 25 Jul 2006 07:37:25 +0000 Subject: [PATCH] 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 --- MdePkg/Library/BaseTimerLibLocalApic/Ebc/EbcTimerLib.c | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/MdePkg/Library/BaseTimerLibLocalApic/Ebc/EbcTimerLib.c b/MdePkg/Library/BaseTimerLibLocalApic/Ebc/EbcTimerLib.c index 7de360a0e6..97cf3e28af 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; } -- 2.39.2