From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by mx.groups.io with SMTP id smtpd.web11.1200.1581058826871225732 for ; Thu, 06 Feb 2020 23:00:26 -0800 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: intel.com, ip: 192.55.52.93, mailfrom: liming.gao@intel.com) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga001.jf.intel.com ([10.7.209.18]) by fmsmga102.fm.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 06 Feb 2020 23:00:26 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.70,412,1574150400"; d="scan'208";a="311949272" Received: from fmsmsx105.amr.corp.intel.com ([10.18.124.203]) by orsmga001.jf.intel.com with ESMTP; 06 Feb 2020 23:00:26 -0800 Received: from shsmsx603.ccr.corp.intel.com (10.109.6.143) by FMSMSX105.amr.corp.intel.com (10.18.124.203) with Microsoft SMTP Server (TLS) id 14.3.439.0; Thu, 6 Feb 2020 23:00:25 -0800 Received: from shsmsx606.ccr.corp.intel.com (10.109.6.216) by SHSMSX603.ccr.corp.intel.com (10.109.6.143) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.1713.5; Fri, 7 Feb 2020 15:00:24 +0800 Received: from shsmsx606.ccr.corp.intel.com ([10.109.6.216]) by SHSMSX606.ccr.corp.intel.com ([10.109.6.216]) with mapi id 15.01.1713.004; Fri, 7 Feb 2020 15:00:24 +0800 From: "Liming Gao" To: "Javeed, Ashraf" , "devel@edk2.groups.io" CC: "Kinney, Michael D" , "Ni, Ray" Subject: Re: [edk2-staging/UEFI_PCI_ENHANCE-2 PATCH] MdePkg/Protocols: Code correction - removal of reserved member Thread-Topic: [edk2-staging/UEFI_PCI_ENHANCE-2 PATCH] MdePkg/Protocols: Code correction - removal of reserved member Thread-Index: AQHV3NmA+0elhlDyqE6ScHESdZa2o6gPTs9g Date: Fri, 7 Feb 2020 07:00:23 +0000 Message-ID: References: <20200206103739.18732-1-ashraf.javeed@intel.com> In-Reply-To: <20200206103739.18732-1-ashraf.javeed@intel.com> Accept-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: dlp-version: 11.2.0.6 dlp-product: dlpe-windows dlp-reaction: no-action x-originating-ip: [10.239.127.36] MIME-Version: 1.0 Return-Path: liming.gao@intel.com Content-Language: en-US Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable Reviewed-by: Liming Gao > -----Original Message----- > From: Javeed, Ashraf > Sent: Thursday, February 6, 2020 6:38 PM > To: devel@edk2.groups.io > Cc: Kinney, Michael D ; Gao, Liming ; Ni, Ray > Subject: [edk2-staging/UEFI_PCI_ENHANCE-2 PATCH] MdePkg/Protocols: Code c= orrection - removal of reserved member >=20 > Signed-off-by: Ashraf Javeed > Cc: Michael D Kinney > Cc: Liming Gao > Cc: Ray Ni > --- > MdePkg/Include/Protocol/PciExpressPlatform.h | 13 ++++--------- > 1 file changed, 4 insertions(+), 9 deletions(-) >=20 > diff --git a/MdePkg/Include/Protocol/PciExpressPlatform.h b/MdePkg/Includ= e/Protocol/PciExpressPlatform.h > index dc58268..bb2c8c8 100644 > --- a/MdePkg/Include/Protocol/PciExpressPlatform.h > +++ b/MdePkg/Include/Protocol/PciExpressPlatform.h > @@ -360,14 +360,10 @@ struct _EFI_PCI_EXPRESS_L1PM_SUBSTATES { > }; >=20 > /// > -/// Reserves for future use > -/// > -typedef UINT8 EFI_PCI_EXPRESS_RESERVES; > - > -/// > -/// The EFI_PCI_EXPRESS_DEVICE_POLICY is altogether 128-byte size, with = each > -/// byte field representing one PCI standerd feature defined in the PCI = Express Base > -/// Specification 4.0, version 1.0. > +/// The EFI_PCI_EXPRESS_DEVICE_POLICY size is fixed as per its definitio= n corresponding > +/// to its version, with each byte field represents one PCI Express feat= ure and > +/// its bitmask define the legal combinations to represent all the valid= combinations > +/// of its attributes, defined in the PCI Express Base Specification. > /// > typedef struct { > EFI_PCI_EXPRESS_MAX_PAYLOAD_SIZE DeviceCtlMPS; > @@ -384,7 +380,6 @@ typedef struct { > EFI_PCI_EXPRESS_CTO_SUPPORT CTOsupport; > EFI_PCI_EXPRESS_CPM LinkCtlCPM; > EFI_PCI_EXPRESS_L1PM_SUBSTATES L1PMSubstates; > - EFI_PCI_EXPRESS_RESERVES Reserves[114]; > } EFI_PCI_EXPRESS_DEVICE_POLICY; >=20 > /// > -- > 2.21.0.windows.1