diff options
author | Jeff Fan <jeff.fan@intel.com> | 2015-04-07 05:33:41 +0000 |
---|---|---|
committer | vanjeff <vanjeff@Edk2> | 2015-04-07 05:33:41 +0000 |
commit | 99b987347fdfb5c53f1e040f62334d81f56d2e06 (patch) | |
tree | bf149e28b6afe7b00e4e81021531881a12efea30 /SourceLevelDebugPkg | |
parent | c8a2836a82334d422632050b5fa4b12ad4ab22d8 (diff) | |
download | edk2-platforms-99b987347fdfb5c53f1e040f62334d81f56d2e06.tar.xz |
Add missing parameter in function header.
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jeff Fan <jeff.fan@intel.com>
git-svn-id: https://svn.code.sf.net/p/edk2/code/trunk/edk2@17125 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'SourceLevelDebugPkg')
-rw-r--r-- | SourceLevelDebugPkg/Library/DebugAgent/DebugAgentCommon/DebugTimer.c | 2 | ||||
-rw-r--r-- | SourceLevelDebugPkg/Library/DebugAgent/DebugAgentCommon/DebugTimer.h | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/SourceLevelDebugPkg/Library/DebugAgent/DebugAgentCommon/DebugTimer.c b/SourceLevelDebugPkg/Library/DebugAgent/DebugAgentCommon/DebugTimer.c index bf06072b01..0a60e7d857 100644 --- a/SourceLevelDebugPkg/Library/DebugAgent/DebugAgentCommon/DebugTimer.c +++ b/SourceLevelDebugPkg/Library/DebugAgent/DebugAgentCommon/DebugTimer.c @@ -17,7 +17,7 @@ /**
Initialize CPU local APIC timer.
- @param[out] Local APIC timer frequency returned.
+ @param[out] TimerFrequency Local APIC timer frequency returned.
@return 32-bit Local APIC timer init count.
**/
diff --git a/SourceLevelDebugPkg/Library/DebugAgent/DebugAgentCommon/DebugTimer.h b/SourceLevelDebugPkg/Library/DebugAgent/DebugAgentCommon/DebugTimer.h index 7ff0661d46..021d67e11a 100644 --- a/SourceLevelDebugPkg/Library/DebugAgent/DebugAgentCommon/DebugTimer.h +++ b/SourceLevelDebugPkg/Library/DebugAgent/DebugAgentCommon/DebugTimer.h @@ -18,7 +18,7 @@ /**
Initialize CPU local APIC timer.
- @param[out] Local APIC timer frequency returned.
+ @param[out] TimerFrequency Local APIC timer frequency returned.
@return 32-bit Local APIC timer init count.
**/
|