From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga12.intel.com (mga12.intel.com []) by mx.groups.io with SMTP id smtpd.web10.1375.1617145463989694654 for ; Tue, 30 Mar 2021 16:04:24 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=fail (domain: intel.com, ip: , mailfrom: michael.d.kinney@intel.com) IronPort-SDR: LcgsxhiqFFjUauJsBZUORgYDF9TLkx2yEkC8xJkvDnnKO/kZK+RUN0u7dzIeTmQQU2ThM3Sp0k cfkC0FeNYBvw== X-IronPort-AV: E=McAfee;i="6000,8403,9939"; a="171282410" X-IronPort-AV: E=Sophos;i="5.81,291,1610438400"; d="scan'208";a="171282410" Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 30 Mar 2021 16:04:22 -0700 IronPort-SDR: /x+r9cui7nRzTBDNH63B4K9X9ei5wE3qrV40/B2PF7ZgG/pen3kSYDK/bPRy6DE3MtFyYXDA7e i72dWi5oMKZA== X-IronPort-AV: E=Sophos;i="5.81,291,1610438400"; d="scan'208";a="455222095" Received: from mdkinney-mobl2.amr.corp.intel.com ([10.251.11.21]) by orsmga001-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 30 Mar 2021 16:04:22 -0700 From: "Michael D Kinney" To: devel@edk2.groups.io Cc: Liming Gao , Zhiguang Liu Subject: [Patch 1/3] MdePkg/Include/Protocol: EFI_HII POPUP_PROTOCOL duplicate declaration Date: Tue, 30 Mar 2021 16:04:03 -0700 Message-Id: <20210330230405.1162-2-michael.d.kinney@intel.com> X-Mailer: git-send-email 2.31.1.windows.1 In-Reply-To: <20210330230405.1162-1-michael.d.kinney@intel.com> References: <20210330230405.1162-1-michael.d.kinney@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit REF: https://bugzilla.tianocore.org/show_bug.cgi?id=3285 Remove duplicate declaration of structure type EFI_HII_POPUP_PROTOCOL from HiiPopup.h. The forward declaration of the top of this file already declared this type. Cc: Liming Gao Cc: Zhiguang Liu Signed-off-by: Michael D Kinney --- MdePkg/Include/Protocol/HiiPopup.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/MdePkg/Include/Protocol/HiiPopup.h b/MdePkg/Include/Protocol/HiiPopup.h index e8161c3701ad..8e217071d7f8 100644 --- a/MdePkg/Include/Protocol/HiiPopup.h +++ b/MdePkg/Include/Protocol/HiiPopup.h @@ -2,7 +2,7 @@ This protocol provides services to display a popup window. The protocol is typically produced by the forms browser and consumed by a driver callback handler. - Copyright (c) 2017-2018, Intel Corporation. All rights reserved.
+ Copyright (c) 2017-2021, Intel Corporation. All rights reserved.
SPDX-License-Identifier: BSD-2-Clause-Patent @par Revision Reference: @@ -67,10 +67,10 @@ EFI_STATUS OUT EFI_HII_POPUP_SELECTION *UserSelection OPTIONAL ); -typedef struct _EFI_HII_POPUP_PROTOCOL { +struct _EFI_HII_POPUP_PROTOCOL { UINT64 Revision; EFI_HII_CREATE_POPUP CreatePopup; -} EFI_HII_POPUP_PROTOCOL; +}; extern EFI_GUID gEfiHiiPopupProtocolGuid; -- 2.31.1.windows.1