summaryrefslogtreecommitdiffstats
path: root/Nt32Pkg/WinNtGopDxe
diff options
context:
space:
mode:
authorjji4 <jji4@6f19259b-4bc3-4df7-8a09-765794883524>2008-10-30 06:11:42 +0000
committerjji4 <jji4@6f19259b-4bc3-4df7-8a09-765794883524>2008-10-30 06:11:42 +0000
commit78e570b6f9cc284cbe0ad2e8cd4c4fff0be0cde2 (patch)
treee4b1c99454a6ddbf010c513fd752c3afc822888f /Nt32Pkg/WinNtGopDxe
parent819d1488930d30b30bb467fcb3bf0f05b28d675e (diff)
downloadedk2-78e570b6f9cc284cbe0ad2e8cd4c4fff0be0cde2.tar.gz
edk2-78e570b6f9cc284cbe0ad2e8cd4c4fff0be0cde2.tar.bz2
edk2-78e570b6f9cc284cbe0ad2e8cd4c4fff0be0cde2.zip
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@6299 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'Nt32Pkg/WinNtGopDxe')
-rw-r--r--Nt32Pkg/WinNtGopDxe/WinNtGopDriver.c1
-rw-r--r--Nt32Pkg/WinNtGopDxe/WinNtGopInput.c9
-rw-r--r--Nt32Pkg/WinNtGopDxe/WinNtGopScreen.c6
3 files changed, 1 insertions, 15 deletions
diff --git a/Nt32Pkg/WinNtGopDxe/WinNtGopDriver.c b/Nt32Pkg/WinNtGopDxe/WinNtGopDriver.c
index ae29da7850..4f37707f66 100644
--- a/Nt32Pkg/WinNtGopDxe/WinNtGopDriver.c
+++ b/Nt32Pkg/WinNtGopDxe/WinNtGopDriver.c
@@ -23,7 +23,6 @@ Abstract:
**/
#include "WinNtGop.h"
-STATIC
EFI_STATUS
FreeNotifyList (
IN OUT LIST_ENTRY *ListHead
diff --git a/Nt32Pkg/WinNtGopDxe/WinNtGopInput.c b/Nt32Pkg/WinNtGopDxe/WinNtGopInput.c
index f78247c23f..acf838b630 100644
--- a/Nt32Pkg/WinNtGopDxe/WinNtGopInput.c
+++ b/Nt32Pkg/WinNtGopDxe/WinNtGopInput.c
@@ -158,7 +158,6 @@ GopPrivateCheckQ (
return EFI_SUCCESS;
}
-STATIC
BOOLEAN
GopPrivateIsKeyRegistered (
IN EFI_KEY_DATA *RegsiteredData,
@@ -205,7 +204,6 @@ Returns:
}
-STATIC
VOID
GopPrivateInvokeRegisteredFunction (
IN GOP_PRIVATE_DATA *Private,
@@ -245,7 +243,6 @@ Returns:
}
}
-STATIC
EFI_STATUS
GopPrivateUpdateStatusLight (
IN GOP_PRIVATE_DATA *Private
@@ -277,7 +274,6 @@ Returns:
}
-STATIC
EFI_STATUS
GopPrivateResetWorker (
IN GOP_PRIVATE_DATA *Private
@@ -338,7 +334,6 @@ Returns:
return EFI_SUCCESS;
}
-STATIC
EFI_STATUS
GopPrivateReadKeyStrokeWorker (
IN GOP_PRIVATE_DATA *Private,
@@ -491,7 +486,6 @@ WinNtGopSimpleTextInReset (
@return TODO: add return values
**/
-STATIC
EFI_STATUS
EFIAPI
WinNtGopSimpleTextInReadKeyStroke (
@@ -525,7 +519,6 @@ WinNtGopSimpleTextInReadKeyStroke (
@return TODO: add return values
**/
-STATIC
VOID
EFIAPI
WinNtGopSimpleTextInWaitForKey (
@@ -570,7 +563,6 @@ WinNtGopSimpleTextInWaitForKey (
// Simple Text Input Ex protocol functions
//
-STATIC
EFI_STATUS
EFIAPI
WinNtGopSimpleTextInExResetEx (
@@ -598,7 +590,6 @@ WinNtGopSimpleTextInExResetEx (
return GopPrivateResetWorker (Private);
}
-STATIC
EFI_STATUS
EFIAPI
WinNtGopSimpleTextInExReadKeyStrokeEx (
diff --git a/Nt32Pkg/WinNtGopDxe/WinNtGopScreen.c b/Nt32Pkg/WinNtGopDxe/WinNtGopScreen.c
index f663f3243b..c8c7d1197e 100644
--- a/Nt32Pkg/WinNtGopDxe/WinNtGopScreen.c
+++ b/Nt32Pkg/WinNtGopDxe/WinNtGopScreen.c
@@ -27,7 +27,7 @@ Abstract:
EFI_WIN_NT_THUNK_PROTOCOL *mWinNt;
DWORD mTlsIndex = TLS_OUT_OF_INDEXES;
DWORD mTlsIndexUseCount = 0; // lets us know when we can free mTlsIndex.
-static EFI_EVENT mGopScreenExitBootServicesEvent;
+EFI_EVENT mGopScreenExitBootServicesEvent;
GOP_MODE_DATA mGopModeData[] = {
{800, 600, 0, 0},
{640, 480, 0, 0},
@@ -45,7 +45,6 @@ WinNtGopStartWindow (
IN UINT32 RefreshRate
);
-STATIC
VOID
EFIAPI
KillNtGopThread (
@@ -53,7 +52,6 @@ KillNtGopThread (
IN VOID *Context
);
-STATIC
VOID
WinNtGopConvertParamToEfiKeyShiftState (
IN GOP_PRIVATE_DATA *Private,
@@ -93,7 +91,6 @@ WinNtGopConvertParamToEfiKeyShiftState (
}
}
-STATIC
VOID
WinNtGopConvertParamToEfiKey (
IN GOP_PRIVATE_DATA *Private,
@@ -1110,7 +1107,6 @@ WinNtGopDestructor (
@return None.
**/
-STATIC
VOID
EFIAPI
KillNtGopThread (