IntelFrameworkModulePkg/LegacyBios: Rename local variables

Contributed-under: TianoCore Contribution Agreement 1.0
Signed-off-by: Ruiyu Ni <ruiyu.ni@intel.com>
Reviewed-by: Eric Dong <eric.dong@intel.com>
This commit is contained in:
Ruiyu Ni 2016-06-12 14:58:00 +08:00
parent 7053060f5f
commit aa7f11db4d
1 changed files with 17 additions and 17 deletions

View File

@ -33,9 +33,9 @@ LegacyBiosBuildSioDataFromIsaIo (
) )
{ {
EFI_STATUS Status; EFI_STATUS Status;
DEVICE_PRODUCER_SERIAL *Sio1Ptr; DEVICE_PRODUCER_SERIAL *SioSerial;
DEVICE_PRODUCER_PARALLEL *Sio2Ptr; DEVICE_PRODUCER_PARALLEL *SioParallel;
DEVICE_PRODUCER_FLOPPY *Sio3Ptr; DEVICE_PRODUCER_FLOPPY *SioFloppy;
UINTN HandleCount; UINTN HandleCount;
EFI_HANDLE *HandleBuffer; EFI_HANDLE *HandleBuffer;
UINTN Index; UINTN Index;
@ -137,10 +137,10 @@ LegacyBiosBuildSioDataFromIsaIo (
// We want resource for legacy even if no 32-bit driver installed // We want resource for legacy even if no 32-bit driver installed
// //
for (ChildIndex = 0; ChildIndex < EntryCount; ChildIndex++) { for (ChildIndex = 0; ChildIndex < EntryCount; ChildIndex++) {
Sio1Ptr = &SioPtr->Serial[ResourceList->Device.UID]; SioSerial = &SioPtr->Serial[ResourceList->Device.UID];
Sio1Ptr->Address = (UINT16) IoResource->StartRange; SioSerial->Address = (UINT16) IoResource->StartRange;
Sio1Ptr->Irq = (UINT8) InterruptResource->StartRange; SioSerial->Irq = (UINT8) InterruptResource->StartRange;
Sio1Ptr->Mode = DEVICE_SERIAL_MODE_NORMAL | DEVICE_SERIAL_MODE_DUPLEX_HALF; SioSerial->Mode = DEVICE_SERIAL_MODE_NORMAL | DEVICE_SERIAL_MODE_DUPLEX_HALF;
} }
FreePool (OpenInfoBuffer); FreePool (OpenInfoBuffer);
@ -158,11 +158,11 @@ LegacyBiosBuildSioDataFromIsaIo (
InterruptResource != NULL && InterruptResource != NULL &&
DmaResource != NULL DmaResource != NULL
) { ) {
Sio2Ptr = &SioPtr->Parallel[ResourceList->Device.UID]; SioParallel = &SioPtr->Parallel[ResourceList->Device.UID];
Sio2Ptr->Address = (UINT16) IoResource->StartRange; SioParallel->Address = (UINT16) IoResource->StartRange;
Sio2Ptr->Irq = (UINT8) InterruptResource->StartRange; SioParallel->Irq = (UINT8) InterruptResource->StartRange;
Sio2Ptr->Dma = (UINT8) DmaResource->StartRange; SioParallel->Dma = (UINT8) DmaResource->StartRange;
Sio2Ptr->Mode = DEVICE_PARALLEL_MODE_MODE_OUTPUT_ONLY; SioParallel->Mode = DEVICE_PARALLEL_MODE_MODE_OUTPUT_ONLY;
} }
} }
// //
@ -172,11 +172,11 @@ LegacyBiosBuildSioDataFromIsaIo (
if (IoResource != NULL && InterruptResource != NULL && DmaResource != NULL) { if (IoResource != NULL && InterruptResource != NULL && DmaResource != NULL) {
Status = gBS->HandleProtocol (HandleBuffer[Index], &gEfiBlockIoProtocolGuid, (VOID **) &BlockIo); Status = gBS->HandleProtocol (HandleBuffer[Index], &gEfiBlockIoProtocolGuid, (VOID **) &BlockIo);
if (!EFI_ERROR (Status)) { if (!EFI_ERROR (Status)) {
Sio3Ptr = &SioPtr->Floppy; SioFloppy = &SioPtr->Floppy;
Sio3Ptr->Address = (UINT16) IoResource->StartRange; SioFloppy->Address = (UINT16) IoResource->StartRange;
Sio3Ptr->Irq = (UINT8) InterruptResource->StartRange; SioFloppy->Irq = (UINT8) InterruptResource->StartRange;
Sio3Ptr->Dma = (UINT8) DmaResource->StartRange; SioFloppy->Dma = (UINT8) DmaResource->StartRange;
Sio3Ptr->NumberOfFloppy++; SioFloppy->NumberOfFloppy++;
} }
} }
} }