mirror of https://github.com/acidanthera/audk.git
modify coding style to pass ecc tool
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5544 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
2c8547ab2d
commit
d0b494edf2
|
@ -1,7 +1,7 @@
|
||||||
/** @file
|
/** @file
|
||||||
A non-functional instance of the Timer Library.
|
A non-functional instance of the Timer Library.
|
||||||
|
|
||||||
Copyright (c) 2007, Intel Corporation<BR>
|
Copyright (c) 2007 - 2008, Intel Corporation<BR>
|
||||||
All rights reserved. This program and the accompanying materials
|
All rights reserved. This program and the accompanying materials
|
||||||
are licensed and made available under the terms and conditions of the BSD License
|
are licensed and made available under the terms and conditions of the BSD License
|
||||||
which accompanies this distribution. The full text of the license may be found at
|
which accompanies this distribution. The full text of the license may be found at
|
||||||
|
@ -20,13 +20,11 @@
|
||||||
#include <Library/DebugLib.h>
|
#include <Library/DebugLib.h>
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Stalls the CPU for at least the given number of microseconds.
|
|
||||||
|
|
||||||
Stalls the CPU for the number of microseconds specified by MicroSeconds.
|
Stalls the CPU for the number of microseconds specified by MicroSeconds.
|
||||||
|
|
||||||
@param MicroSeconds The minimum number of microseconds to delay.
|
@param MicroSeconds The minimum number of microseconds to delay.
|
||||||
|
|
||||||
@return MicroSeconds
|
@return MicroSeconds.
|
||||||
|
|
||||||
**/
|
**/
|
||||||
UINTN
|
UINTN
|
||||||
|
@ -40,13 +38,11 @@ MicroSecondDelay (
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Stalls the CPU for at least the given number of nanoseconds.
|
|
||||||
|
|
||||||
Stalls the CPU for the number of nanoseconds specified by NanoSeconds.
|
Stalls the CPU for the number of nanoseconds specified by NanoSeconds.
|
||||||
|
|
||||||
@param NanoSeconds The minimum number of nanoseconds to delay.
|
@param NanoSeconds The minimum number of nanoseconds to delay.
|
||||||
|
|
||||||
@return NanoSeconds
|
@return NanoSeconds.
|
||||||
|
|
||||||
**/
|
**/
|
||||||
UINTN
|
UINTN
|
||||||
|
@ -60,8 +56,6 @@ NanoSecondDelay (
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Retrieves the current value of a 64-bit free running performance counter.
|
|
||||||
|
|
||||||
Retrieves the current value of a 64-bit free running performance counter. The
|
Retrieves the current value of a 64-bit free running performance counter. The
|
||||||
counter can either count up by 1 or count down by 1. If the physical
|
counter can either count up by 1 or count down by 1. If the physical
|
||||||
performance counter counts by a larger increment, then the counter values
|
performance counter counts by a larger increment, then the counter values
|
||||||
|
|
Loading…
Reference in New Issue