diff options
author | qhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524> | 2007-10-09 07:08:08 +0000 |
---|---|---|
committer | qhuang8 <qhuang8@6f19259b-4bc3-4df7-8a09-765794883524> | 2007-10-09 07:08:08 +0000 |
commit | 1307dcd745881377355a2e7fba53ff9184e92657 (patch) | |
tree | 74011b3878ab072b97debadebc68999625b58f5a /Nt32Pkg/WinNtGopDxe/ComponentName.c | |
parent | 36873a61950d71596206567e58a0319e0813d05d (diff) | |
download | edk2-1307dcd745881377355a2e7fba53ff9184e92657.zip edk2-1307dcd745881377355a2e7fba53ff9184e92657.tar.gz edk2-1307dcd745881377355a2e7fba53ff9184e92657.tar.bz2 |
Add compiler hint of "GLOBAL_REMOVE_IF_UNREFERENCED" to prevent component name structures linked into final image if PcdComponentNameDisabled or PcdComponentName2Disabled is set to TRUE.
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@4057 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'Nt32Pkg/WinNtGopDxe/ComponentName.c')
-rw-r--r-- | Nt32Pkg/WinNtGopDxe/ComponentName.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/Nt32Pkg/WinNtGopDxe/ComponentName.c b/Nt32Pkg/WinNtGopDxe/ComponentName.c index a8a1f95..a9b2818 100644 --- a/Nt32Pkg/WinNtGopDxe/ComponentName.c +++ b/Nt32Pkg/WinNtGopDxe/ComponentName.c @@ -178,20 +178,20 @@ WinNtGopComponentNameGetControllerName ( //
// EFI Component Name Protocol
//
-EFI_COMPONENT_NAME_PROTOCOL gWinNtGopComponentName = {
+GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME_PROTOCOL gWinNtGopComponentName = {
WinNtGopComponentNameGetDriverName,
WinNtGopComponentNameGetControllerName,
"eng"
- };
+};
//
// EFI Component Name 2 Protocol
//
-EFI_COMPONENT_NAME2_PROTOCOL gWinNtGopComponentName2 = {
+GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME2_PROTOCOL gWinNtGopComponentName2 = {
(EFI_COMPONENT_NAME2_GET_DRIVER_NAME) WinNtGopComponentNameGetDriverName,
(EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) WinNtGopComponentNameGetControllerName,
"en"
- };
+};
static EFI_UNICODE_STRING_TABLE mWinNtGopDriverNameTable[] = {
|