diff options
author | jji4 <jji4@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-10-30 06:14:35 +0000 |
---|---|---|
committer | jji4 <jji4@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-10-30 06:14:35 +0000 |
commit | 7492c63d423201cbabc00c343cc25269bb1254c1 (patch) | |
tree | d93889cc23d790f1d14cf66da4a898125be7c39d /UnixPkg/UnixUgaDxe | |
parent | ba31c2e08e5c3925b4c21b454ee7ee2c7366657c (diff) | |
download | edk2-platforms-7492c63d423201cbabc00c343cc25269bb1254c1.tar.xz |
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@6301 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'UnixPkg/UnixUgaDxe')
-rw-r--r-- | UnixPkg/UnixUgaDxe/ComponentName.c | 2 | ||||
-rw-r--r-- | UnixPkg/UnixUgaDxe/UnixUgaInput.c | 2 | ||||
-rw-r--r-- | UnixPkg/UnixUgaDxe/UnixUgaScreen.c | 6 |
3 files changed, 2 insertions, 8 deletions
diff --git a/UnixPkg/UnixUgaDxe/ComponentName.c b/UnixPkg/UnixUgaDxe/ComponentName.c index 5c50d5689c..282c5939ab 100644 --- a/UnixPkg/UnixUgaDxe/ComponentName.c +++ b/UnixPkg/UnixUgaDxe/ComponentName.c @@ -49,7 +49,7 @@ EFI_COMPONENT_NAME_PROTOCOL gUnixUgaComponentName = { "eng"
};
-static EFI_UNICODE_STRING_TABLE mUnixUgaDriverNameTable[] = {
+EFI_UNICODE_STRING_TABLE mUnixUgaDriverNameTable[] = {
{ "eng", L"Unix Universal Graphics Adapter Driver" },
{ NULL , NULL }
};
diff --git a/UnixPkg/UnixUgaDxe/UnixUgaInput.c b/UnixPkg/UnixUgaDxe/UnixUgaInput.c index 29e605c16f..6758d2f4ec 100644 --- a/UnixPkg/UnixUgaDxe/UnixUgaInput.c +++ b/UnixPkg/UnixUgaDxe/UnixUgaInput.c @@ -83,7 +83,6 @@ Returns: return EFI_SUCCESS; } -STATIC EFI_STATUS EFIAPI UnixUgaSimpleTextInReadKeyStroke ( @@ -130,7 +129,6 @@ Returns: return Status; } -STATIC VOID EFIAPI UnixUgaSimpleTextInWaitForKey ( diff --git a/UnixPkg/UnixUgaDxe/UnixUgaScreen.c b/UnixPkg/UnixUgaDxe/UnixUgaScreen.c index d9118aa00f..38bc0233f5 100644 --- a/UnixPkg/UnixUgaDxe/UnixUgaScreen.c +++ b/UnixPkg/UnixUgaDxe/UnixUgaScreen.c @@ -24,9 +24,8 @@ Abstract: #include "UnixUga.h" EFI_UNIX_THUNK_PROTOCOL *mUnix; -static EFI_EVENT mUgaScreenExitBootServicesEvent; +EFI_EVENT mUgaScreenExitBootServicesEvent; -STATIC EFI_STATUS UnixUgaStartWindow ( IN UGA_PRIVATE_DATA *Private, @@ -36,7 +35,6 @@ UnixUgaStartWindow ( IN UINT32 RefreshRate ); -STATIC VOID EFIAPI KillNtUgaThread ( @@ -308,7 +306,6 @@ Returns: } -STATIC EFI_STATUS UnixUgaStartWindow ( IN UGA_PRIVATE_DATA *Private, @@ -416,7 +413,6 @@ Returns: return EFI_SUCCESS; } -STATIC VOID EFIAPI KillNtUgaThread ( |