diff options
Diffstat (limited to 'EmulatorPkg/CpuRuntimeDxe')
-rw-r--r-- | EmulatorPkg/CpuRuntimeDxe/Cpu.c | 9 | ||||
-rw-r--r-- | EmulatorPkg/CpuRuntimeDxe/MpService.c | 21 |
2 files changed, 7 insertions, 23 deletions
diff --git a/EmulatorPkg/CpuRuntimeDxe/Cpu.c b/EmulatorPkg/CpuRuntimeDxe/Cpu.c index 2f7d5368e0..10d86f8e9c 100644 --- a/EmulatorPkg/CpuRuntimeDxe/Cpu.c +++ b/EmulatorPkg/CpuRuntimeDxe/Cpu.c @@ -127,9 +127,6 @@ EmuInit ( IN EFI_CPU_INIT_TYPE InitType
)
{
- CPU_ARCH_PROTOCOL_PRIVATE *Private;
-
- Private = CPU_ARCH_PROTOCOL_PRIVATE_DATA_FROM_THIS (This);
return EFI_UNSUPPORTED;
}
@@ -141,8 +138,6 @@ EmuRegisterInterruptHandler ( IN EFI_CPU_INTERRUPT_HANDLER InterruptHandler
)
{
- CPU_ARCH_PROTOCOL_PRIVATE *Private;
-
//
// Do parameter checking for EFI spec conformance
//
@@ -152,7 +147,6 @@ EmuRegisterInterruptHandler ( //
// Do nothing for Emu emulation
//
- Private = CPU_ARCH_PROTOCOL_PRIVATE_DATA_FROM_THIS (This);
return EFI_UNSUPPORTED;
}
@@ -192,8 +186,6 @@ EmuSetMemoryAttributes ( IN UINT64 Attributes
)
{
- CPU_ARCH_PROTOCOL_PRIVATE *Private;
-
//
// Check for invalid parameter for Spec conformance
//
@@ -204,7 +196,6 @@ EmuSetMemoryAttributes ( //
// Do nothing for Nt32 emulation
//
- Private = CPU_ARCH_PROTOCOL_PRIVATE_DATA_FROM_THIS (This);
return EFI_UNSUPPORTED;
}
diff --git a/EmulatorPkg/CpuRuntimeDxe/MpService.c b/EmulatorPkg/CpuRuntimeDxe/MpService.c index b5b1d156c0..ba0ad82504 100644 --- a/EmulatorPkg/CpuRuntimeDxe/MpService.c +++ b/EmulatorPkg/CpuRuntimeDxe/MpService.c @@ -374,7 +374,6 @@ CpuMpServicesStartupAllAps ( {
EFI_STATUS Status;
PROCESSOR_DATA_BLOCK *ProcessorData;
- UINTN ListIndex;
UINTN Number;
UINTN NextNumber;
PROCESSOR_STATE APInitialState;
@@ -411,7 +410,6 @@ CpuMpServicesStartupAllAps ( Timeout = TimeoutInMicroseconds;
- ListIndex = 0;
ProcessorData = NULL;
gMPSystem.FinishCount = 0;
@@ -650,7 +648,6 @@ CpuMpServicesStartupThisAP ( OUT BOOLEAN *Finished OPTIONAL
)
{
- EFI_STATUS Status;
INTN Timeout;
if (!IsBSP ()) {
@@ -685,13 +682,13 @@ CpuMpServicesStartupThisAP ( SetApProcedure (&gMPSystem.ProcessorData[ProcessorNumber], Procedure, ProcedureArgument);
if (WaitEvent != NULL) {
- // Non Blocking
- gMPSystem.WaitEvent = WaitEvent;
- Status = gBS->SetTimer (
- gMPSystem.ProcessorData[ProcessorNumber].CheckThisAPEvent,
- TimerPeriodic,
- gPollInterval
- );
+ // Non Blocking
+ gMPSystem.WaitEvent = WaitEvent;
+ gBS->SetTimer (
+ gMPSystem.ProcessorData[ProcessorNumber].CheckThisAPEvent,
+ TimerPeriodic,
+ gPollInterval
+ );
return EFI_SUCCESS;
}
@@ -1155,10 +1152,6 @@ FillInProcessorInformation ( IN UINTN ProcessorNumber
)
{
- PROCESSOR_DATA_BLOCK *ProcessorData;
-
- ProcessorData = &gMPSystem.ProcessorData[ProcessorNumber];
-
gMPSystem.ProcessorData[ProcessorNumber].Info.ProcessorId = gThread->Self ();
gMPSystem.ProcessorData[ProcessorNumber].Info.StatusFlag = PROCESSOR_ENABLED_BIT | PROCESSOR_HEALTH_STATUS_BIT;
if (BSP) {
|