summaryrefslogtreecommitdiff
path: root/UnixPkg/UnixBusDriverDxe
diff options
context:
space:
mode:
authorjji4 <jji4@6f19259b-4bc3-4df7-8a09-765794883524>2008-10-30 06:14:35 +0000
committerjji4 <jji4@6f19259b-4bc3-4df7-8a09-765794883524>2008-10-30 06:14:35 +0000
commit7492c63d423201cbabc00c343cc25269bb1254c1 (patch)
treed93889cc23d790f1d14cf66da4a898125be7c39d /UnixPkg/UnixBusDriverDxe
parentba31c2e08e5c3925b4c21b454ee7ee2c7366657c (diff)
downloadedk2-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/UnixBusDriverDxe')
-rw-r--r--UnixPkg/UnixBusDriverDxe/ComponentName.c2
-rw-r--r--UnixPkg/UnixBusDriverDxe/UnixBusDriver.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/UnixPkg/UnixBusDriverDxe/ComponentName.c b/UnixPkg/UnixBusDriverDxe/ComponentName.c
index 7ea1eacc1a..886023ab5a 100644
--- a/UnixPkg/UnixBusDriverDxe/ComponentName.c
+++ b/UnixPkg/UnixBusDriverDxe/ComponentName.c
@@ -49,7 +49,7 @@ EFI_COMPONENT_NAME_PROTOCOL gUnixBusDriverComponentName = {
"eng"
};
-static EFI_UNICODE_STRING_TABLE mUnixBusDriverNameTable[] = {
+EFI_UNICODE_STRING_TABLE mUnixBusDriverNameTable[] = {
{ "eng", L"Unix Bus Driver" },
{ NULL , NULL }
};
diff --git a/UnixPkg/UnixBusDriverDxe/UnixBusDriver.c b/UnixPkg/UnixBusDriverDxe/UnixBusDriver.c
index b6b2ac6b77..64f0245fc7 100644
--- a/UnixPkg/UnixBusDriverDxe/UnixBusDriver.c
+++ b/UnixPkg/UnixBusDriverDxe/UnixBusDriver.c
@@ -95,7 +95,7 @@ EFI_UNIX_UGA - Builds UGA Windows of Width and Height
//
// Define GUID for the Unix Bus Driver
//
-static EFI_GUID gUnixBusDriverGuid = {
+EFI_GUID gUnixBusDriverGuid = {
0x419f582, 0x625, 0x4531, {0x8a, 0x33, 0x85, 0xa9, 0x96, 0x5c, 0x95, 0xbc}
};
@@ -117,7 +117,7 @@ EFI_DRIVER_BINDING_PROTOCOL gUnixBusDriverBinding = {
// Table to map UNIX Environment variable to the GUID that should be in
// device path.
//
-static UNIX_PCD_ENTRY mPcdEnvironment[] = {
+UNIX_PCD_ENTRY mPcdEnvironment[] = {
{PcdToken(PcdUnixConsole), &gEfiUnixConsoleGuid},
{PcdToken(PcdUnixUga), &gEfiUnixUgaGuid},
{PcdToken(PcdUnixFileSystem), &gEfiUnixFileSystemGuid},