From 1307dcd745881377355a2e7fba53ff9184e92657 Mon Sep 17 00:00:00 2001 From: qhuang8 Date: Tue, 9 Oct 2007 07:08:08 +0000 Subject: 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 --- IntelFrameworkModulePkg/Bus/Isa/IsaBusDxe/ComponentName.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'IntelFrameworkModulePkg/Bus/Isa/IsaBusDxe/ComponentName.c') diff --git a/IntelFrameworkModulePkg/Bus/Isa/IsaBusDxe/ComponentName.c b/IntelFrameworkModulePkg/Bus/Isa/IsaBusDxe/ComponentName.c index f4d5562a99..f93a23a88e 100644 --- a/IntelFrameworkModulePkg/Bus/Isa/IsaBusDxe/ComponentName.c +++ b/IntelFrameworkModulePkg/Bus/Isa/IsaBusDxe/ComponentName.c @@ -16,20 +16,20 @@ WITHOUT WARRANTIES OR REPRESENTATIONS OF ANY KIND, EITHER EXPRESS OR IMPLIED. // // EFI Component Name Protocol // -EFI_COMPONENT_NAME_PROTOCOL gIsaBusComponentName = { +GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME_PROTOCOL gIsaBusComponentName = { IsaBusComponentNameGetDriverName, IsaBusComponentNameGetControllerName, "eng" - }; +}; // // EFI Component Name 2 Protocol // -EFI_COMPONENT_NAME2_PROTOCOL gIsaBusComponentName2 = { +GLOBAL_REMOVE_IF_UNREFERENCED EFI_COMPONENT_NAME2_PROTOCOL gIsaBusComponentName2 = { (EFI_COMPONENT_NAME2_GET_DRIVER_NAME) IsaBusComponentNameGetDriverName, (EFI_COMPONENT_NAME2_GET_CONTROLLER_NAME) IsaBusComponentNameGetControllerName, "en" - }; +}; STATIC EFI_UNICODE_STRING_TABLE mIsaBusDriverNameTable[] = { -- cgit v1.2.3