mirror of https://github.com/acidanthera/audk.git
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>
This commit is contained in:
parent
719ff8cf3e
commit
30dc4a49b6
|
@ -209,8 +209,5 @@ MicrocodeDetect (
|
||||||
loaded microcode signature [0x%08x]\n", CurrentRevision, LatestRevision));
|
loaded microcode signature [0x%08x]\n", CurrentRevision, LatestRevision));
|
||||||
ReleaseSpinLock(&PeiCpuMpData->MpLock);
|
ReleaseSpinLock(&PeiCpuMpData->MpLock);
|
||||||
}
|
}
|
||||||
MicrocodeInfo.Load = TRUE;
|
|
||||||
} else {
|
|
||||||
MicrocodeInfo.Load = FALSE;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -25,7 +25,6 @@ typedef struct {
|
||||||
VOID *MicrocodeData;
|
VOID *MicrocodeData;
|
||||||
UINTN MicrocodeSize;
|
UINTN MicrocodeSize;
|
||||||
UINT32 ProcessorId;
|
UINT32 ProcessorId;
|
||||||
BOOLEAN Load;
|
|
||||||
} MICROCODE_INFO;
|
} MICROCODE_INFO;
|
||||||
|
|
||||||
//
|
//
|
||||||
|
|
Loading…
Reference in New Issue