From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id C7C3F1A1DF6 for ; Mon, 29 Aug 2016 11:14:09 -0700 (PDT) Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by orsmga104.jf.intel.com with ESMTP; 29 Aug 2016 11:14:09 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.30,597,1470726000"; d="scan'208";a="1032771041" Received: from gpmudusu-mobl5.amr.corp.intel.com ([10.101.139.14]) by fmsmga001.fm.intel.com with ESMTP; 29 Aug 2016 11:14:07 -0700 From: Giri P Mudusuru To: edk2-devel@lists.01.org Cc: Jiewen Yao , Maurice Ma , Satya Yarlagadda , Michael Kinney Date: Mon, 29 Aug 2016 11:14:05 -0700 Message-Id: X-Mailer: git-send-email 2.9.0.windows.1 In-Reply-To: References: Subject: [PATCH 3/3] IntelFsp2WrapperPkg: Update pragma to use push and pop X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 29 Aug 2016 18:14:09 -0000 Cc: Jiewen Yao Cc: Maurice Ma Cc: Satya Yarlagadda Cc: Michael Kinney Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Giri P Mudusuru --- .../Library/BaseFspWrapperApiLib/X64/DispatchExecute.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/IntelFsp2WrapperPkg/Library/BaseFspWrapperApiLib/X64/DispatchExecute.c b/IntelFsp2WrapperPkg/Library/BaseFspWrapperApiLib/X64/DispatchExecute.c index 061d381..5f4b75e 100644 --- a/IntelFsp2WrapperPkg/Library/BaseFspWrapperApiLib/X64/DispatchExecute.c +++ b/IntelFsp2WrapperPkg/Library/BaseFspWrapperApiLib/X64/DispatchExecute.c @@ -18,7 +18,7 @@ #include #include -#pragma pack(1) +#pragma pack(push, 1) typedef union { struct { UINT32 LimitLow : 16; @@ -37,7 +37,7 @@ typedef union { } Bits; UINT64 Uint64; } IA32_GDT; -#pragma pack() +#pragma pack(pop) GLOBAL_REMOVE_IF_UNREFERENCED IA32_GDT mGdtEntries[] = { {{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}}, /* 0x0: reserve */ -- 2.9.0.windows.1