diff options
author | jji4 <jji4@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-10-30 05:58:52 +0000 |
---|---|---|
committer | jji4 <jji4@6f19259b-4bc3-4df7-8a09-765794883524> | 2008-10-30 05:58:52 +0000 |
commit | fe467413d2230a2170bb3ffc91e5e8c909920628 (patch) | |
tree | 7da43ac0a74480310fcd775c9d47b8e86bf07bab /MdePkg/Library/UefiDevicePathLibDevicePathProtocol | |
parent | 7829726671acec54707ebfd0ac115dfd86b253e9 (diff) | |
download | edk2-platforms-fe467413d2230a2170bb3ffc91e5e8c909920628.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@6295 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'MdePkg/Library/UefiDevicePathLibDevicePathProtocol')
-rw-r--r-- | MdePkg/Library/UefiDevicePathLibDevicePathProtocol/UefiDevicePathLib.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/MdePkg/Library/UefiDevicePathLibDevicePathProtocol/UefiDevicePathLib.c b/MdePkg/Library/UefiDevicePathLibDevicePathProtocol/UefiDevicePathLib.c index a1a8650f0d..6ea34237bc 100644 --- a/MdePkg/Library/UefiDevicePathLibDevicePathProtocol/UefiDevicePathLib.c +++ b/MdePkg/Library/UefiDevicePathLibDevicePathProtocol/UefiDevicePathLib.c @@ -26,7 +26,7 @@ #include <Library/BaseMemoryLib.h>
#include <Library/UefiBootServicesTableLib.h>
-STATIC EFI_DEVICE_PATH_UTILITIES_PROTOCOL *mDevicePathUtilities = NULL;
+EFI_DEVICE_PATH_UTILITIES_PROTOCOL *mDevicePathUtilities = NULL;
/**
The constructor function caches the pointer to DevicePathUtilites protocol.
@@ -361,4 +361,3 @@ FileDevicePath ( return DevicePath;
}
-
|