summaryrefslogtreecommitdiff
path: root/MdePkg/Library/BaseLib/Ia32/ReadPmc.c
diff options
context:
space:
mode:
Diffstat (limited to 'MdePkg/Library/BaseLib/Ia32/ReadPmc.c')
-rw-r--r--MdePkg/Library/BaseLib/Ia32/ReadPmc.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/MdePkg/Library/BaseLib/Ia32/ReadPmc.c b/MdePkg/Library/BaseLib/Ia32/ReadPmc.c
index 0a5e0c75a7..e37425ada4 100644
--- a/MdePkg/Library/BaseLib/Ia32/ReadPmc.c
+++ b/MdePkg/Library/BaseLib/Ia32/ReadPmc.c
@@ -1,7 +1,7 @@
/** @file
AsmReadPmc function
- Copyright (c) 2006 - 2007, Intel Corporation<BR>
+ Copyright (c) 2006 - 2008, Intel Corporation<BR>
All rights reserved. This program and the accompanying materials
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
@@ -12,9 +12,6 @@
**/
-
-
-
/**
Reads the current value of a Performance Counter (PMC).
@@ -29,11 +26,11 @@
UINT64
EFIAPI
AsmReadPmc (
- IN UINT32 PmcIndex
+ IN UINT32 Index
)
{
_asm {
- mov ecx, PmcIndex
+ mov ecx, Index
rdpmc
}
}