summaryrefslogtreecommitdiff
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 15:52:45 +0800
commita508ac4b01fbbc614ba9bf715c4208672434f854 (patch)
tree2fd8b4b9e3604ae9e674a201f12dd88d1d8c14b9
parent7e3639367ed2e580a714424bf3b82e997a16b11c (diff)
downloadedk2-a508ac4b01fbbc614ba9bf715c4208672434f854.zip
edk2-a508ac4b01fbbc614ba9bf715c4208672434f854.tar.gz
edk2-a508ac4b01fbbc614ba9bf715c4208672434f854.tar.bz2
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> (cherry picked from commit a24de121cf70bc48555b68d942b94fd10a074387)
-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 d9ded59..ac3650a 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