From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) (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 4894621AE263B for ; Wed, 21 Jun 2017 06:47:40 -0700 (PDT) Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by orsmga101.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 21 Jun 2017 06:48:35 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.39,369,1493708400"; d="scan'208";a="117068179" Received: from fmsmsx104.amr.corp.intel.com ([10.18.124.202]) by fmsmga005.fm.intel.com with ESMTP; 21 Jun 2017 06:48:35 -0700 Received: from fmsmsx154.amr.corp.intel.com (10.18.116.70) by fmsmsx104.amr.corp.intel.com (10.18.124.202) with Microsoft SMTP Server (TLS) id 14.3.319.2; Wed, 21 Jun 2017 06:48:35 -0700 Received: from shsmsx152.ccr.corp.intel.com (10.239.6.52) by FMSMSX154.amr.corp.intel.com (10.18.116.70) with Microsoft SMTP Server (TLS) id 14.3.319.2; Wed, 21 Jun 2017 06:48:34 -0700 Received: from shsmsx102.ccr.corp.intel.com ([169.254.2.146]) by SHSMSX152.ccr.corp.intel.com ([169.254.6.122]) with mapi id 14.03.0319.002; Wed, 21 Jun 2017 21:48:33 +0800 From: "Gao, Liming" To: "Zeng, Star" , "edk2-devel@lists.01.org" Thread-Topic: [PATCH] MdeModulePkg Variable: Add missing change in dd59d95e1994 Thread-Index: AQHS6pL+Hp2YADd4DkmTAH645QN1VqIvVOCw Date: Wed, 21 Jun 2017 13:48:32 +0000 Message-ID: <4A89E2EF3DFEDB4C8BFDE51014F606A14D74CE89@shsmsx102.ccr.corp.intel.com> References: <1498052007-142680-1-git-send-email-star.zeng@intel.com> In-Reply-To: <1498052007-142680-1-git-send-email-star.zeng@intel.com> Accept-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: dlp-product: dlpe-windows dlp-version: 10.0.102.7 dlp-reaction: no-action x-originating-ip: [10.239.127.40] MIME-Version: 1.0 Subject: Re: [PATCH] MdeModulePkg Variable: Add missing change in dd59d95e1994 X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 21 Jun 2017 13:47:40 -0000 Content-Language: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Reviewed-by: Liming Gao > -----Original Message----- > From: Zeng, Star > Sent: Wednesday, June 21, 2017 9:33 PM > To: edk2-devel@lists.01.org > Cc: Zeng, Star ; Gao, Liming > Subject: [PATCH] MdeModulePkg Variable: Add missing change in dd59d95e199= 4 >=20 > dd59d95e1994 updated *.c file, but forgot to update *.h file. >=20 > Cc: Liming Gao > Contributed-under: TianoCore Contribution Agreement 1.0 > Signed-off-by: Star Zeng > --- > MdeModulePkg/Universal/Variable/RuntimeDxe/Variable.h | 7 ++++--- > 1 file changed, 4 insertions(+), 3 deletions(-) >=20 > diff --git a/MdeModulePkg/Universal/Variable/RuntimeDxe/Variable.h b/MdeM= odulePkg/Universal/Variable/RuntimeDxe/Variable.h > index 55df13191b43..cd0d9568158a 100644 > --- a/MdeModulePkg/Universal/Variable/RuntimeDxe/Variable.h > +++ b/MdeModulePkg/Universal/Variable/RuntimeDxe/Variable.h > @@ -2,7 +2,7 @@ > The internal header file includes the common header files, defines > internal structure and functions used by Variable modules. >=20 > -Copyright (c) 2006 - 2015, Intel Corporation. All rights reserved.
> +Copyright (c) 2006 - 2017, Intel Corporation. All rights reserved.
> This program and the accompanying materials > are licensed and made available under the terms and conditions of the BS= D License > which accompanies this distribution. The full text of the license may b= e found at > @@ -514,7 +514,8 @@ GetFvbInfoByAddress ( > @param Attributes Attribute value of the variable foun= d. > @param DataSize Size of Data found. If size is less = than the > data, this value contains the requir= ed size. > - @param Data Data pointer. > + @param Data The buffer to return the contents of= the variable. May be NULL > + with a zero DataSize in order to det= ermine the size buffer needed. >=20 > @return EFI_INVALID_PARAMETER Invalid parameter. > @return EFI_SUCCESS Find the specified variable. > @@ -529,7 +530,7 @@ VariableServiceGetVariable ( > IN EFI_GUID *VendorGuid, > OUT UINT32 *Attributes OPTIONAL, > IN OUT UINTN *DataSize, > - OUT VOID *Data > + OUT VOID *Data OPTIONAL > ); >=20 > /** > -- > 2.7.0.windows.1