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
This commit is contained in:
bxing 2006-07-25 07:37:25 +00:00
parent ed384ef31c
commit 452e6c77be

View File

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