mirror of https://github.com/acidanthera/audk.git
modify coding style to pass ecc tool and provide comments that complied with Doxgen.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@5452 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
36093af9df
commit
7687d3a835
|
@ -30,7 +30,6 @@
|
||||||
@param Delay Number of ticks to delay.
|
@param Delay Number of ticks to delay.
|
||||||
|
|
||||||
**/
|
**/
|
||||||
STATIC
|
|
||||||
VOID
|
VOID
|
||||||
InternalIpfDelay (
|
InternalIpfDelay (
|
||||||
IN INT64 Delay
|
IN INT64 Delay
|
||||||
|
|
|
@ -34,10 +34,10 @@
|
||||||
#
|
#
|
||||||
|
|
||||||
[Sources.Ia32]
|
[Sources.Ia32]
|
||||||
x86TimerLib.c
|
X86TimerLib.c
|
||||||
|
|
||||||
[Sources.X64]
|
[Sources.X64]
|
||||||
x86TimerLib.c
|
X86TimerLib.c
|
||||||
|
|
||||||
[Sources.IPF]
|
[Sources.IPF]
|
||||||
IpfTimerLib.c
|
IpfTimerLib.c
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
/** @file
|
/** @file
|
||||||
Timer Library functions built upon local APIC on IA32/x64.
|
Timer Library functions built upon local APIC on IA32/x64.
|
||||||
|
|
||||||
Copyright (c) 2006 - 2007, Intel Corporation<BR>
|
Copyright (c) 2006 - 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
|
||||||
|
@ -40,7 +40,6 @@ CONST UINT8 mTimerLibLocalApicDivisor[] = {
|
||||||
@return The base address of local APIC
|
@return The base address of local APIC
|
||||||
|
|
||||||
**/
|
**/
|
||||||
STATIC
|
|
||||||
UINTN
|
UINTN
|
||||||
InternalX86GetApicBase (
|
InternalX86GetApicBase (
|
||||||
VOID
|
VOID
|
||||||
|
@ -59,7 +58,6 @@ InternalX86GetApicBase (
|
||||||
@return The frequency of the timer in Hz.
|
@return The frequency of the timer in Hz.
|
||||||
|
|
||||||
**/
|
**/
|
||||||
STATIC
|
|
||||||
UINT32
|
UINT32
|
||||||
InternalX86GetTimerFrequency (
|
InternalX86GetTimerFrequency (
|
||||||
IN UINTN ApicBase
|
IN UINTN ApicBase
|
||||||
|
@ -80,7 +78,6 @@ InternalX86GetTimerFrequency (
|
||||||
@return The tick counter read.
|
@return The tick counter read.
|
||||||
|
|
||||||
**/
|
**/
|
||||||
STATIC
|
|
||||||
INT32
|
INT32
|
||||||
InternalX86GetTimerTick (
|
InternalX86GetTimerTick (
|
||||||
IN UINTN ApicBase
|
IN UINTN ApicBase
|
||||||
|
@ -99,7 +96,6 @@ InternalX86GetTimerTick (
|
||||||
@param Delay A period of time to delay in ticks.
|
@param Delay A period of time to delay in ticks.
|
||||||
|
|
||||||
**/
|
**/
|
||||||
STATIC
|
|
||||||
VOID
|
VOID
|
||||||
InternalX86Delay (
|
InternalX86Delay (
|
||||||
IN UINTN ApicBase,
|
IN UINTN ApicBase,
|
Loading…
Reference in New Issue