diff options
author | Jeff Fan <jeff.fan@intel.com> | 2016-07-11 19:52:00 +0800 |
---|---|---|
committer | Jeff Fan <jeff.fan@intel.com> | 2016-07-14 09:44:04 +0800 |
commit | 6d98a371593cbeee89001182a50f144f074893e2 (patch) | |
tree | e9dcc5101b3e6438af5e733fe481984c1d11b30f /UefiCpuPkg/CpuMpPei/CpuMpPei.h | |
parent | 9c3d2f9a2985d97961b07ddc493b6e406ace8814 (diff) | |
download | edk2-platforms-6d98a371593cbeee89001182a50f144f074893e2.tar.xz |
UefiCpuPkg/CpuMpPei: Remove un-used variables and functions
Cc: Feng Tian <feng.tian@intel.com>
Cc: Michael Kinney <michael.d.kinney@intel.com>
Cc: Giri Mudusuru <giri.p.mudusuru@intel.com>
Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Jeff Fan <jeff.fan@intel.com>
Reviewed-by: Giri P Mudusuru <giri.p.mudusuru@intel.com>
Diffstat (limited to 'UefiCpuPkg/CpuMpPei/CpuMpPei.h')
-rw-r--r-- | UefiCpuPkg/CpuMpPei/CpuMpPei.h | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/UefiCpuPkg/CpuMpPei/CpuMpPei.h b/UefiCpuPkg/CpuMpPei/CpuMpPei.h index 4c114decb6..ef21450365 100644 --- a/UefiCpuPkg/CpuMpPei/CpuMpPei.h +++ b/UefiCpuPkg/CpuMpPei/CpuMpPei.h @@ -85,25 +85,6 @@ typedef struct _PEI_CPU_MP_DATA PEI_CPU_MP_DATA; #pragma pack(1)
-typedef union {
- struct {
- UINT32 LimitLow : 16;
- UINT32 BaseLow : 16;
- UINT32 BaseMid : 8;
- UINT32 Type : 4;
- UINT32 System : 1;
- UINT32 Dpl : 2;
- UINT32 Present : 1;
- UINT32 LimitHigh : 4;
- UINT32 Software : 1;
- UINT32 Reserved : 1;
- UINT32 DefaultSize : 1;
- UINT32 Granularity : 1;
- UINT32 BaseHigh : 8;
- } Bits;
- UINT64 Uint64;
-} IA32_GDT;
-
//
// MP CPU exchange information for AP reset code
// This structure is required to be packed because fixed field offsets
|