From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail.byosoft.com.cn (mail.byosoft.com.cn [58.240.74.242]) by mx.groups.io with SMTP id smtpd.web10.3077.1600131264036757672 for ; Mon, 14 Sep 2020 17:54:25 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=none, err=permanent DNS error (domain: byosoft.com.cn, ip: 58.240.74.242, mailfrom: gaoliming@byosoft.com.cn) Received: from DESKTOPS6D0PVI ([58.246.60.130]) (envelope-sender ) by 192.168.6.13 with ESMTP for ; Tue, 15 Sep 2020 08:54:21 +0800 X-WM-Sender: gaoliming@byosoft.com.cn X-WM-AuthFlag: YES X-WM-AuthUser: gaoliming@byosoft.com.cn From: "gaoliming" To: , Cc: "'Michael D Kinney'" , "'Zhiguang Liu'" References: In-Reply-To: Subject: =?UTF-8?B?5Zue5aSNOiBbZWRrMi1kZXZlbF0gW1BBVENIIHYxIDEvMV0gTWRlUGtnOiBDb3JyZWN0IEVGSV9CTE9DS19JT19QUk9UT0NPTF9SRVZJU0lPTjMgdmFsdWU=?= Date: Tue, 15 Sep 2020 08:54:21 +0800 Message-ID: <003501d68afa$bfe65a10$3fb30e30$@byosoft.com.cn> MIME-Version: 1.0 X-Mailer: Microsoft Outlook 16.0 Thread-Index: AQHrQTElO+C2weWgVKpiTxNgYkWi+qk/cwXg Content-Type: text/plain; charset="gb2312" Content-Transfer-Encoding: quoted-printable Content-Language: zh-cn Reviewed-by: Liming Gao > -----=D3=CA=BC=FE=D4=AD=BC=FE----- > =B7=A2=BC=FE=C8=CB: bounce+27952+65228+4905953+8761045@groups.io > =B4=FA=B1=ED Michael > Kubacki > =B7=A2=CB=CD=CA=B1=BC=E4: 2020=C4=EA9=D4=C215=C8=D5 2:11 > =CA=D5=BC=FE=C8=CB: devel@edk2.groups.io > =B3=AD=CB=CD: Michael D Kinney ; Liming Gao > ; Zhiguang Liu > =D6=F7=CC=E2: [edk2-devel] [PATCH v1 1/1] MdePkg: Correct > EFI_BLOCK_IO_PROTOCOL_REVISION3 value >=20 > From: Michael Kubacki >=20 > REF:https://bugzilla.tianocore.org/show_bug.cgi?id=3D2961 >=20 > The value of EFI_BLOCK_IO_PROTOCOL_REVISION3 is currently > 0x00020031. However, the value assigned in the UEFI Specification > 2.8B is ((2<<16) | (31)) which is 0x0002001F. >=20 > Cc: Michael D Kinney > Cc: Liming Gao > Cc: Zhiguang Liu > Signed-off-by: Michael Kubacki > --- > MdePkg/Include/Protocol/BlockIo.h | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) >=20 > diff --git a/MdePkg/Include/Protocol/BlockIo.h > b/MdePkg/Include/Protocol/BlockIo.h > index 7b332691ede3..3bd76885e11c 100644 > --- a/MdePkg/Include/Protocol/BlockIo.h > +++ b/MdePkg/Include/Protocol/BlockIo.h > @@ -201,7 +201,7 @@ typedef struct { >=20 > #define EFI_BLOCK_IO_PROTOCOL_REVISION 0x00010000 > #define EFI_BLOCK_IO_PROTOCOL_REVISION2 0x00020001 > -#define EFI_BLOCK_IO_PROTOCOL_REVISION3 0x00020031 > +#define EFI_BLOCK_IO_PROTOCOL_REVISION3 0x0002001F >=20 > /// > /// Revision defined in EFI1.1. > -- > 2.28.0.windows.1 >=20 >=20 >=20