mirror of https://github.com/acidanthera/audk.git
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@6308 6f19259b-4bc3-4df7-8a09-765794883524
This commit is contained in:
parent
7001eaf8e5
commit
30ae98da98
|
@ -27,14 +27,14 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||||
//
|
//
|
||||||
// Event for Set Virtual Map Changed Event
|
// Event for Set Virtual Map Changed Event
|
||||||
//
|
//
|
||||||
STATIC EFI_EVENT mSetVirtualMapChangedEvent = NULL;
|
EFI_EVENT mSetVirtualMapChangedEvent = NULL;
|
||||||
|
|
||||||
//
|
//
|
||||||
// Lib will ASSERT if more FVB devices than this are added to the system.
|
// Lib will ASSERT if more FVB devices than this are added to the system.
|
||||||
//
|
//
|
||||||
STATIC FVB_ENTRY *mFvbEntry;
|
FVB_ENTRY *mFvbEntry;
|
||||||
STATIC EFI_EVENT mFvbRegistration;
|
EFI_EVENT mFvbRegistration;
|
||||||
STATIC UINTN mFvbCount;
|
UINTN mFvbCount;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
Check whether an address is runtime memory or not.
|
Check whether an address is runtime memory or not.
|
||||||
|
@ -135,7 +135,6 @@ IsRuntimeMemory (
|
||||||
@param Context Event Context
|
@param Context Event Context
|
||||||
|
|
||||||
**/
|
**/
|
||||||
STATIC
|
|
||||||
VOID
|
VOID
|
||||||
EFIAPI
|
EFIAPI
|
||||||
FvbNotificationEvent (
|
FvbNotificationEvent (
|
||||||
|
|
|
@ -38,7 +38,7 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED.
|
||||||
#include <Library/DxePiLib.h>
|
#include <Library/DxePiLib.h>
|
||||||
#include <Library/PcdLib.h>
|
#include <Library/PcdLib.h>
|
||||||
|
|
||||||
STATIC EFI_GRAPHICS_OUTPUT_BLT_PIXEL mEfiColors[16] = {
|
EFI_GRAPHICS_OUTPUT_BLT_PIXEL mEfiColors[16] = {
|
||||||
{ 0x00, 0x00, 0x00, 0x00 },
|
{ 0x00, 0x00, 0x00, 0x00 },
|
||||||
{ 0x98, 0x00, 0x00, 0x00 },
|
{ 0x98, 0x00, 0x00, 0x00 },
|
||||||
{ 0x00, 0x98, 0x00, 0x00 },
|
{ 0x00, 0x98, 0x00, 0x00 },
|
||||||
|
|
Loading…
Reference in New Issue