summaryrefslogtreecommitdiffstats
path: root/UefiCpuPkg/Library/CpuExceptionHandlerLib
diff options
context:
space:
mode:
authorLiming Gao <liming.gao@intel.com>2018-03-16 09:47:06 +0800
committerLiming Gao <liming.gao@intel.com>2018-03-16 14:34:44 +0800
commita24de121cf70bc48555b68d942b94fd10a074387 (patch)
tree603688c1e329957d184f95cb4b10028a093cd8d3 /UefiCpuPkg/Library/CpuExceptionHandlerLib
parent792ace0ac391c37c1299322340abdf74e2603795 (diff)
downloadedk2-a24de121cf70bc48555b68d942b94fd10a074387.tar.gz
edk2-a24de121cf70bc48555b68d942b94fd10a074387.tar.bz2
edk2-a24de121cf70bc48555b68d942b94fd10a074387.zip
UefiCpuPkg CpuExceptionHandlerLib: use FixedPcdGetSize() as the macro value
FixedPcdGetSize() is used as the macro value, PcdGetSize() is used as global variable or function. Here usage is to access macro value. Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Liming Gao <liming.gao@intel.com> Cc: Wang Jian J <jian.j.wang@intel.com> Cc: Ruiyu Ni <ruiyu.ni@intel.com> Cc: Michael Kinney <michael.d.kinney@intel.com> Reviewed-by: Jian J Wang <jian.j.wang@intel.com>
Diffstat (limited to 'UefiCpuPkg/Library/CpuExceptionHandlerLib')
-rw-r--r--UefiCpuPkg/Library/CpuExceptionHandlerLib/Ia32/ArchInterruptDefs.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/UefiCpuPkg/Library/CpuExceptionHandlerLib/Ia32/ArchInterruptDefs.h b/UefiCpuPkg/Library/CpuExceptionHandlerLib/Ia32/ArchInterruptDefs.h
index d9ded5977f..ac3650a2a3 100644
--- a/UefiCpuPkg/Library/CpuExceptionHandlerLib/Ia32/ArchInterruptDefs.h
+++ b/UefiCpuPkg/Library/CpuExceptionHandlerLib/Ia32/ArchInterruptDefs.h
@@ -1,7 +1,7 @@
/** @file
Ia32 arch definition for CPU Exception Handler Library.
- Copyright (c) 2013, Intel Corporation. All rights reserved.<BR>
+ Copyright (c) 2013 - 2018, Intel Corporation. All rights reserved.<BR>
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
@@ -43,10 +43,10 @@ typedef struct {
#define CPU_TSS_DESC_SIZE \
(sizeof (IA32_TSS_DESCRIPTOR) * \
- (PcdGetSize (PcdCpuStackSwitchExceptionList) + 1))
+ (FixedPcdGetSize (PcdCpuStackSwitchExceptionList) + 1))
#define CPU_TSS_SIZE \
(sizeof (IA32_TASK_STATE_SEGMENT) * \
- (PcdGetSize (PcdCpuStackSwitchExceptionList) + 1))
+ (FixedPcdGetSize (PcdCpuStackSwitchExceptionList) + 1))
#endif