mirror of https://github.com/acidanthera/audk.git
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:
parent
ed384ef31c
commit
452e6c77be
|
@ -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;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue