diff options
Diffstat (limited to 'MdePkg/Library')
-rw-r--r-- | MdePkg/Library/BaseTimerLibLocalApic/Ebc/EbcTimerLib.c | 10 |
1 files 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;
}
|