From 819d1488930d30b30bb467fcb3bf0f05b28d675e Mon Sep 17 00:00:00 2001 From: jji4 Date: Thu, 30 Oct 2008 06:08:09 +0000 Subject: Patch to remove STATIC modifier. This is on longer recommended by EFI Framework coding style. All duplicated symbols has been renamed accordingly. git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@6298 6f19259b-4bc3-4df7-8a09-765794883524 --- .../Library/BaseReportStatusCodeLib/BaseReportStatusCodeLib.c | 2 -- .../Library/DxeReportStatusCodeLibFramework/ReportStatusCodeLib.c | 1 - IntelFrameworkModulePkg/Library/GraphicsLib/Graphics.c | 4 +--- .../PciIncompatibleDeviceSupportLib.c | 1 - .../Library/PeiReportStatusCodeLib/ReportStatusCodeLib.c | 1 - .../ReportStatusCodeLib.c | 1 - .../SmmRuntimeDxeSupport.c | 8 -------- 7 files changed, 1 insertion(+), 17 deletions(-) (limited to 'IntelFrameworkModulePkg/Library') diff --git a/IntelFrameworkModulePkg/Library/BaseReportStatusCodeLib/BaseReportStatusCodeLib.c b/IntelFrameworkModulePkg/Library/BaseReportStatusCodeLib/BaseReportStatusCodeLib.c index 973e14b07a..acfc358598 100644 --- a/IntelFrameworkModulePkg/Library/BaseReportStatusCodeLib/BaseReportStatusCodeLib.c +++ b/IntelFrameworkModulePkg/Library/BaseReportStatusCodeLib/BaseReportStatusCodeLib.c @@ -47,7 +47,6 @@ @retval EFI_UNSUPPORTED Status Code Protocol is not available. **/ -STATIC EFI_STATUS InternalReportStatusCode ( IN EFI_STATUS_CODE_TYPE Type, @@ -69,7 +68,6 @@ InternalReportStatusCode ( @return The size, in bytes, of DevicePath. **/ -STATIC UINTN InternalReportStatusCodeDevicePathSize ( IN CONST EFI_DEVICE_PATH_PROTOCOL *DevicePath diff --git a/IntelFrameworkModulePkg/Library/DxeReportStatusCodeLibFramework/ReportStatusCodeLib.c b/IntelFrameworkModulePkg/Library/DxeReportStatusCodeLibFramework/ReportStatusCodeLib.c index 7e2cc8b27a..df6e808f68 100644 --- a/IntelFrameworkModulePkg/Library/DxeReportStatusCodeLibFramework/ReportStatusCodeLib.c +++ b/IntelFrameworkModulePkg/Library/DxeReportStatusCodeLibFramework/ReportStatusCodeLib.c @@ -75,7 +75,6 @@ InternalReportStatusCode ( @return The size, in bytes, of DevicePath. **/ -STATIC UINTN InternalReportStatusCodeDevicePathSize ( IN CONST EFI_DEVICE_PATH_PROTOCOL *DevicePath diff --git a/IntelFrameworkModulePkg/Library/GraphicsLib/Graphics.c b/IntelFrameworkModulePkg/Library/GraphicsLib/Graphics.c index 935f99566c..16374284d2 100644 --- a/IntelFrameworkModulePkg/Library/GraphicsLib/Graphics.c +++ b/IntelFrameworkModulePkg/Library/GraphicsLib/Graphics.c @@ -141,7 +141,6 @@ GetGraphicsBitMapFromFV ( @retval EFI_OUT_OF_RESOURCES - No enough buffer to allocate **/ -STATIC EFI_STATUS ConvertBmpToGopBlt ( IN VOID *BmpImage, @@ -569,7 +568,7 @@ DisableQuietBoot ( return ConsoleControl->SetMode (ConsoleControl, EfiConsoleControlScreenText); } -static EFI_GRAPHICS_OUTPUT_BLT_PIXEL mEfiColors[16] = { +EFI_GRAPHICS_OUTPUT_BLT_PIXEL mEfiColors[16] = { { 0x00, 0x00, 0x00, 0x00 }, { 0x98, 0x00, 0x00, 0x00 }, { 0x00, 0x98, 0x00, 0x00 }, @@ -614,7 +613,6 @@ static EFI_GRAPHICS_OUTPUT_BLT_PIXEL mEfiColors[16] = { @retval EFI_OUT_OF_RESOURCES - out of resources **/ -STATIC UINTN _IPrint ( IN EFI_GRAPHICS_OUTPUT_PROTOCOL *GraphicsOutput, diff --git a/IntelFrameworkModulePkg/Library/PciIncompatibleDeviceSupportLib/PciIncompatibleDeviceSupportLib.c b/IntelFrameworkModulePkg/Library/PciIncompatibleDeviceSupportLib/PciIncompatibleDeviceSupportLib.c index 68efa8f5f8..08c95b6526 100644 --- a/IntelFrameworkModulePkg/Library/PciIncompatibleDeviceSupportLib/PciIncompatibleDeviceSupportLib.c +++ b/IntelFrameworkModulePkg/Library/PciIncompatibleDeviceSupportLib/PciIncompatibleDeviceSupportLib.c @@ -22,7 +22,6 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. @retval returns EFI_SUCCESS if two PCI device matched. **/ -STATIC EFI_STATUS DeviceCheck ( IN EFI_PCI_DEVICE_INFO *PciDeviceInfo, diff --git a/IntelFrameworkModulePkg/Library/PeiReportStatusCodeLib/ReportStatusCodeLib.c b/IntelFrameworkModulePkg/Library/PeiReportStatusCodeLib/ReportStatusCodeLib.c index f67adf9d3a..f39f36d6b6 100644 --- a/IntelFrameworkModulePkg/Library/PeiReportStatusCodeLib/ReportStatusCodeLib.c +++ b/IntelFrameworkModulePkg/Library/PeiReportStatusCodeLib/ReportStatusCodeLib.c @@ -55,7 +55,6 @@ @retval EFI_UNSUPPORTED Status Code Protocol is not available. **/ -STATIC EFI_STATUS InternalReportStatusCode ( IN EFI_STATUS_CODE_TYPE Type, diff --git a/IntelFrameworkModulePkg/Library/SmmRuntimeDxeReportStatusCodeLibFramework/ReportStatusCodeLib.c b/IntelFrameworkModulePkg/Library/SmmRuntimeDxeReportStatusCodeLibFramework/ReportStatusCodeLib.c index eca0fdcf0f..a8b1449746 100644 --- a/IntelFrameworkModulePkg/Library/SmmRuntimeDxeReportStatusCodeLibFramework/ReportStatusCodeLib.c +++ b/IntelFrameworkModulePkg/Library/SmmRuntimeDxeReportStatusCodeLibFramework/ReportStatusCodeLib.c @@ -77,7 +77,6 @@ InternalReportStatusCode ( @return The size, in bytes, of DevicePath. **/ -STATIC UINTN InternalReportStatusCodeDevicePathSize ( IN CONST EFI_DEVICE_PATH_PROTOCOL *DevicePath diff --git a/IntelFrameworkModulePkg/Library/SmmRuntimeDxeReportStatusCodeLibFramework/SmmRuntimeDxeSupport.c b/IntelFrameworkModulePkg/Library/SmmRuntimeDxeReportStatusCodeLibFramework/SmmRuntimeDxeSupport.c index 5e64c42c9e..8ecf6618ef 100644 --- a/IntelFrameworkModulePkg/Library/SmmRuntimeDxeReportStatusCodeLibFramework/SmmRuntimeDxeSupport.c +++ b/IntelFrameworkModulePkg/Library/SmmRuntimeDxeReportStatusCodeLibFramework/SmmRuntimeDxeSupport.c @@ -20,24 +20,18 @@ #include #include -STATIC EFI_EVENT mVirtualAddressChangeEvent; -STATIC EFI_EVENT mExitBootServicesEvent; -STATIC EFI_STATUS_CODE_DATA *mStatusCodeData; -STATIC BOOLEAN mInSmm; EFI_SMM_BASE_PROTOCOL *mSmmBase; -STATIC EFI_RUNTIME_SERVICES *mRT; -STATIC BOOLEAN mHaveExitedBootServices = FALSE; /** @@ -80,7 +74,6 @@ InternalGetReportStatusCode ( @param[in] Event The Event that is being processed @param[in] Context Event Context **/ -STATIC VOID EFIAPI ReportStatusCodeLibVirtualAddressChange ( @@ -101,7 +94,6 @@ ReportStatusCodeLibVirtualAddressChange ( @param[in] Event The Event that is being processed @param[in] Context Event Context **/ -STATIC VOID EFIAPI ReportStatusCodeLibExitBootServices ( -- cgit v1.2.3