Vlv2TbltDevicePkg/PlatformDxe: Remove the unused variables
Fix the following errors from gcc: Vlv2TbltDevicePkg/PlatformDxe/Platform.c: In function ?InitPciDevPME?: Vlv2TbltDevicePkg/PlatformDxe/Platform.c:516:26: error: variable ?Status? set but not used [-Werror=unused-but-set-variable] Vlv2TbltDevicePkg/PlatformDxe/Platform.c: In function ?InitThermalZone?: Vlv2TbltDevicePkg/PlatformDxe/Platform.c:575:26: error: variable ?Status? set but not used [-Werror=unused-but-set-variable] Vlv2TbltDevicePkg/PlatformDxe/IchRegTable.c: In function ?InitializeSubsystemIds?: Vlv2TbltDevicePkg/PlatformDxe/IchRegTable.c:111:10: error: variable ?SubsystemAudioVidDid? set but not used [-Werror=unused-but-set-variable] Vlv2TbltDevicePkg/PlatformDxe/PciDevice.c: In function ?InitBadBars?: Vlv2TbltDevicePkg/PlatformDxe/PciDevice.c:115:40: error: variable ?PciIoDevice? set but not used [-Werror=unused-but-set-variable] Vlv2TbltDevicePkg/PlatformDxe/PciDevice.c:114:39: error: variable ?Status? set but not used [-Werror=unused-but-set-variable] Vlv2TbltDevicePkg/PlatformDxe/PciDevice.c: In function ?ProgramPciLatency?: Vlv2TbltDevicePkg/PlatformDxe/PciDevice.c:320:39: error: variable ?Status? set but not used [-Werror=unused-but-set-variable] Cc: David Wei <david.wei@intel.com> Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Gary Lin <glin@suse.com> Reviewed-by: David Wei <david.wei@intel.com>
This commit is contained in:
@@ -99,10 +99,8 @@ InitializeSubsystemIds (
|
||||
the Subsystem Vendor and Device IDs.
|
||||
|
||||
@retval Returns VOID
|
||||
|
||||
|
||||
**/
|
||||
InitializeSubsystemIds (
|
||||
VOID
|
||||
InitializeSubsystemIds (
|
||||
)
|
||||
|
@@ -102,8 +102,6 @@ InitBadBars(
|
||||
|
||||
return EFI_SUCCESS;
|
||||
}
|
||||
|
||||
VOID
|
||||
|
||||
VOID
|
||||
InitBadBars(
|
||||
@@ -112,8 +110,6 @@ InitBadBars(
|
||||
IN UINT16 DeviceId
|
||||
)
|
||||
{
|
||||
PCI_IO_DEVICE *PciIoDevice;
|
||||
UINT64 BaseAddress = 0;
|
||||
|
||||
UINT64 BaseAddress = 0;
|
||||
UINT64 TempBaseAddress = 0;
|
||||
@@ -124,7 +120,7 @@ InitBadBars(
|
||||
UINTN MemSizeBits;
|
||||
|
||||
switch ( VendorId) {
|
||||
case ATI_VENDOR_ID:
|
||||
case ATI_VENDOR_ID:
|
||||
//
|
||||
// ATI fix-ups. At this time all ATI cards in BadDeviceTable
|
||||
// have same problem in that OPROM BAR needs to be increased.
|
||||
@@ -135,14 +131,14 @@ InitBadBars(
|
||||
//
|
||||
PciIo->Pci.Read (
|
||||
PciIo,
|
||||
EfiPciIoWidthUint32,
|
||||
EfiPciIoWidthUint32,
|
||||
Bar,
|
||||
1,
|
||||
(VOID *) &BaseAddress
|
||||
);
|
||||
//
|
||||
// Find BAR size
|
||||
//
|
||||
//
|
||||
TempBaseAddress = 0xffffffff;
|
||||
PciIo->Pci.Write (
|
||||
PciIo,
|
||||
@@ -159,7 +155,7 @@ InitBadBars(
|
||||
(VOID *) &TempBaseAddress
|
||||
);
|
||||
TempBaseAddress &= 0xfffffffe;
|
||||
MemSize = 1;
|
||||
MemSize = 1;
|
||||
while ((TempBaseAddress & 0x01) == 0) {
|
||||
TempBaseAddress = TempBaseAddress >> 1;
|
||||
MemSize = MemSize << 1;
|
||||
@@ -169,7 +165,7 @@ InitBadBars(
|
||||
// Free up allocated memory memory and re-allocate with increased size.
|
||||
//
|
||||
gDS->FreeMemorySpace (
|
||||
BaseAddress,
|
||||
BaseAddress,
|
||||
MemSize
|
||||
);
|
||||
//
|
||||
@@ -178,7 +174,7 @@ InitBadBars(
|
||||
MemSize = 0x8000000;
|
||||
MemSizeBits = 28;
|
||||
|
||||
Status = gDS->AllocateMemorySpace (
|
||||
gDS->AllocateMemorySpace (
|
||||
EfiGcdAllocateAnySearchBottomUp,
|
||||
EfiGcdMemoryTypeMemoryMappedIo,
|
||||
MemSizeBits, // Alignment
|
||||
@@ -195,7 +191,7 @@ InitBadBars(
|
||||
(VOID *) &BaseAddress
|
||||
);
|
||||
|
||||
break;
|
||||
break;
|
||||
case NCR_VENDOR_ID:
|
||||
#define MIN_NCR_IO_SIZE 0x800
|
||||
#define NCR_GRAN 11 // 2**11 = 0x800
|
||||
@@ -204,7 +200,7 @@ InitBadBars(
|
||||
//
|
||||
for (Bar = 0x10; Bar < 0x28; Bar+= 4) {
|
||||
|
||||
Status = PciIo->Pci.Read (
|
||||
PciIo->Pci.Read (
|
||||
PciIo,
|
||||
EfiPciIoWidthUint32,
|
||||
Bar,
|
||||
@@ -218,12 +214,12 @@ InitBadBars(
|
||||
EfiPciIoWidthUint32,
|
||||
Bar,
|
||||
1,
|
||||
(VOID *) &TempBaseAddress
|
||||
(VOID *) &TempBaseAddress
|
||||
);
|
||||
TempBaseAddress &= 0xfffffffc;
|
||||
IoSize = 1;
|
||||
while ((TempBaseAddress & 0x01) == 0) {
|
||||
TempBaseAddress = TempBaseAddress >> 1;
|
||||
TempBaseAddress = TempBaseAddress >> 1;
|
||||
IoSize = IoSize << 1;
|
||||
}
|
||||
if (IoSize < MIN_NCR_IO_SIZE) {
|
||||
@@ -233,7 +229,7 @@ InitBadBars(
|
||||
);
|
||||
|
||||
gDS->AllocateIoSpace (
|
||||
EfiGcdAllocateAnySearchTopDown,
|
||||
EfiGcdAllocateAnySearchTopDown,
|
||||
EfiGcdIoTypeIo,
|
||||
NCR_GRAN, // Alignment
|
||||
MIN_NCR_IO_SIZE,
|
||||
@@ -255,7 +251,7 @@ InitBadBars(
|
||||
|
||||
break;
|
||||
|
||||
case INTEL_VENDOR_ID:
|
||||
case INTEL_VENDOR_ID:
|
||||
if (DeviceId == INTEL_82573E_IDER) {
|
||||
//
|
||||
// Tekoa i82573E IDE-R fix-ups. At this time A2 step and earlier parts do not
|
||||
@@ -269,7 +265,7 @@ InitBadBars(
|
||||
EfiPciIoWidthUint8,
|
||||
PCI_REVISION_ID_OFFSET,
|
||||
1,
|
||||
&RevId
|
||||
&RevId
|
||||
);
|
||||
if (RevId <= 0x02) {
|
||||
for (Bar = 0x14; Bar < 0x24; Bar+= 4) {
|
||||
@@ -286,7 +282,7 @@ InitBadBars(
|
||||
(VOID *) &TempBaseAddress
|
||||
);
|
||||
} // end for
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
//
|
||||
@@ -308,13 +304,11 @@ ProgramPciLatency(
|
||||
|
||||
default:
|
||||
break;
|
||||
}
|
||||
return;
|
||||
}
|
||||
return;
|
||||
}
|
||||
|
||||
IN EFI_PCI_IO_PROTOCOL *PciIo
|
||||
VOID
|
||||
ProgramPciLatency(
|
||||
IN EFI_PCI_IO_PROTOCOL *PciIo
|
||||
)
|
||||
|
@@ -513,10 +513,9 @@ InitPciDevPME (
|
||||
)
|
||||
{
|
||||
UINTN VarSize;
|
||||
EFI_STATUS Status;
|
||||
|
||||
VarSize = sizeof(SYSTEM_CONFIGURATION);
|
||||
Status = gRT->GetVariable(
|
||||
gRT->GetVariable(
|
||||
NORMAL_SETUP_NAME,
|
||||
&gEfiNormalSetupGuid,
|
||||
NULL,
|
||||
@@ -572,17 +571,16 @@ InitThermalZone (
|
||||
)
|
||||
{
|
||||
UINTN VarSize;
|
||||
EFI_STATUS Status;
|
||||
EFI_GLOBAL_NVS_AREA_PROTOCOL *GlobalNvsArea;
|
||||
VarSize = sizeof(SYSTEM_CONFIGURATION);
|
||||
Status = gRT->GetVariable(
|
||||
gRT->GetVariable(
|
||||
NORMAL_SETUP_NAME,
|
||||
&gEfiNormalSetupGuid,
|
||||
NULL,
|
||||
&VarSize,
|
||||
&mSystemConfiguration
|
||||
);
|
||||
Status = gBS->LocateProtocol (
|
||||
gBS->LocateProtocol (
|
||||
&gEfiGlobalNvsAreaProtocolGuid,
|
||||
NULL,
|
||||
(void **)&GlobalNvsArea
|
||||
|
Reference in New Issue
Block a user