diff options
author | Jeff Fan <jeff.fan@intel.com> | 2016-07-01 14:27:26 +0800 |
---|---|---|
committer | Hao Wu <hao.a.wu@intel.com> | 2016-07-14 13:20:42 +0800 |
commit | ee9a9f96f0f071639856345fbff848410d3363eb (patch) | |
tree | 1b8f827037dadbafdcf41ad4e00760e859acf90d | |
parent | 850e4fe50a74142c5e03eaa326a61a6bf351f669 (diff) | |
download | edk2-platforms-ee9a9f96f0f071639856345fbff848410d3363eb.tar.xz |
UefiCpuPkg/CpuMpPei: Remove unnecessary variable
Cc: Michael Kinney <michael.d.kinney@intel.com>
Cc: Feng Tian <feng.tian@intel.com>
Cc: Giri P 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>
(cherry picked from commit 30dc4a49b6e303d7a53ff27a8334269cfe3662e9)
-rw-r--r-- | UefiCpuPkg/CpuMpPei/Microcode.c | 3 | ||||
-rw-r--r-- | UefiCpuPkg/CpuMpPei/Microcode.h | 1 |
2 files changed, 0 insertions, 4 deletions
diff --git a/UefiCpuPkg/CpuMpPei/Microcode.c b/UefiCpuPkg/CpuMpPei/Microcode.c index 51a073789b..f91f658d0a 100644 --- a/UefiCpuPkg/CpuMpPei/Microcode.c +++ b/UefiCpuPkg/CpuMpPei/Microcode.c @@ -209,8 +209,5 @@ MicrocodeDetect ( loaded microcode signature [0x%08x]\n", CurrentRevision, LatestRevision));
ReleaseSpinLock(&PeiCpuMpData->MpLock);
}
- MicrocodeInfo.Load = TRUE;
- } else {
- MicrocodeInfo.Load = FALSE;
}
}
diff --git a/UefiCpuPkg/CpuMpPei/Microcode.h b/UefiCpuPkg/CpuMpPei/Microcode.h index f7d23a08fd..965604522a 100644 --- a/UefiCpuPkg/CpuMpPei/Microcode.h +++ b/UefiCpuPkg/CpuMpPei/Microcode.h @@ -25,7 +25,6 @@ typedef struct { VOID *MicrocodeData;
UINTN MicrocodeSize;
UINT32 ProcessorId;
- BOOLEAN Load;
} MICROCODE_INFO;
//
|