From mboxrd@z Thu Jan 1 00:00:00 1970 Authentication-Results: mx.groups.io; dkim=missing; spf=softfail (domain: citrix.com, ip: , mailfrom: anthony.perard@citrix.com) Received: from esa4.hc3370-68.iphmx.com (esa4.hc3370-68.iphmx.com []) by groups.io with SMTP; Wed, 29 May 2019 04:37:28 -0700 Authentication-Results: esa4.hc3370-68.iphmx.com; dkim=none (message not signed) header.i=none; spf=None smtp.pra=anthony.perard@citrix.com; spf=Pass smtp.mailfrom=anthony.perard@citrix.com; spf=None smtp.helo=postmaster@MIAPEX02MSOL02.citrite.net Received-SPF: None (esa4.hc3370-68.iphmx.com: no sender authenticity information available from domain of anthony.perard@citrix.com) identity=pra; client-ip=23.29.105.83; receiver=esa4.hc3370-68.iphmx.com; envelope-from="anthony.perard@citrix.com"; x-sender="anthony.perard@citrix.com"; x-conformance=sidf_compatible Received-SPF: Pass (esa4.hc3370-68.iphmx.com: domain of anthony.perard@citrix.com designates 23.29.105.83 as permitted sender) identity=mailfrom; client-ip=23.29.105.83; receiver=esa4.hc3370-68.iphmx.com; envelope-from="anthony.perard@citrix.com"; x-sender="anthony.perard@citrix.com"; x-conformance=sidf_compatible; x-record-type="v=spf1"; x-record-text="v=spf1 ip4:209.167.231.154 ip4:178.63.86.133 ip4:195.66.111.40/30 ip4:85.115.9.32/28 ip4:199.102.83.4 ip4:192.28.146.160 ip4:192.28.146.107 ip4:216.52.6.88 ip4:216.52.6.188 ip4:23.29.105.83 ip4:162.221.156.50 ~all" Received-SPF: None (esa4.hc3370-68.iphmx.com: no sender authenticity information available from domain of postmaster@MIAPEX02MSOL02.citrite.net) identity=helo; client-ip=23.29.105.83; receiver=esa4.hc3370-68.iphmx.com; envelope-from="anthony.perard@citrix.com"; x-sender="postmaster@MIAPEX02MSOL02.citrite.net"; x-conformance=sidf_compatible IronPort-SDR: gULLNE4QKuCzi7/UP0pgrMPPZ0CqYdDH5uVod2X9lOpzAl4ngOn33EY+tygRutLt6IrDdKU5lg pTzMgSP0E/C32q2e+X59mQOBrm3H3PTLSEjMVZwfCC+X/fC5Jg8sRZDZlCeV10w5eX24HeLWys O++GVDa24dy90WQPe8oIs1T06uF4R1krp5LyJVOZcnlY86ecSztM9jfvHO7oS5/ZXwwAIGIvzV 4wzKHz6B6eVNCJKDfcXSJT6FvwMvaNguhE1QbaaCsNfoch5lWxY4gvedSYg6YnLv+n1ncCqhiw yws= X-SBRS: 2.7 X-MesageID: 1033516 X-Ironport-Server: esa4.hc3370-68.iphmx.com X-Remote-IP: 23.29.105.83 X-Policy: $RELAYED X-IronPort-AV: E=Sophos;i="5.60,527,1549947600"; d="scan'208";a="1033516" From: "Anthony PERARD" To: CC: Jian J Wang , Ray Ni , "Ard Biesheuvel" , Star Zeng , "Hao A Wu" , Julien Grall , Leif Lindholm , Laszlo Ersek , Anthony PERARD Subject: [PATCH 1/4] MdeModulePkg: Add SERIAL_DXE_FILE_GUID Date: Wed, 29 May 2019 12:37:20 +0100 Message-ID: <20190529113723.23186-2-anthony.perard@citrix.com> X-Mailer: git-send-email 2.21.0 In-Reply-To: <20190529113723.23186-1-anthony.perard@citrix.com> References: <20190529113723.23186-1-anthony.perard@citrix.com> MIME-Version: 1.0 Return-Path: anthony.perard@citrix.com Content-Transfer-Encoding: 8bit Content-Type: text/plain SERIAL_DXE_FILE_GUID is used in different places, create a single define that other can use. Suggested-by: Laszlo Ersek Signed-off-by: Anthony PERARD --- Notes: Suggested in: Message-ID: <7d6adf5d-baca-7e9c-68ef-2f8479bbd902@redhat.com> MdeModulePkg/MdeModulePkg.dec | 3 +++ MdeModulePkg/Include/Guid/SerialDxe.h | 19 +++++++++++++++++++ 2 files changed, 22 insertions(+) create mode 100644 MdeModulePkg/Include/Guid/SerialDxe.h diff --git a/MdeModulePkg/MdeModulePkg.dec b/MdeModulePkg/MdeModulePkg.dec index 6cba729982..6c5736618e 100644 --- a/MdeModulePkg/MdeModulePkg.dec +++ b/MdeModulePkg/MdeModulePkg.dec @@ -396,6 +396,9 @@ [Guids] ## Include/Guid/S3StorageDeviceInitList.h gS3StorageDeviceInitListGuid = { 0x310e9b8c, 0xcf90, 0x421e, { 0x8e, 0x9b, 0x9e, 0xef, 0xb6, 0x17, 0xc8, 0xef } } + ## Include/Guid/SerialDxe.h + gSerialDxeFileGuid = { 0xD3987D4B, 0x971A, 0x435F, { 0x8C, 0xAF, 0x49, 0x67, 0xEB, 0x62, 0x72, 0x41 } } + [Ppis] ## Include/Ppi/AtaController.h gPeiAtaControllerPpiGuid = { 0xa45e60d1, 0xc719, 0x44aa, { 0xb0, 0x7a, 0xaa, 0x77, 0x7f, 0x85, 0x90, 0x6d }} diff --git a/MdeModulePkg/Include/Guid/SerialDxe.h b/MdeModulePkg/Include/Guid/SerialDxe.h new file mode 100644 index 0000000000..4d53f4877f --- /dev/null +++ b/MdeModulePkg/Include/Guid/SerialDxe.h @@ -0,0 +1,19 @@ +/** @file + Define the SerialDxe GUID. + + Copyright (c) 2019, Citrix Systems, Inc. + + SPDX-License-Identifier: BSD-2-Clause-Patent +**/ + +#ifndef __SERIAL_DXE_H__ +#define __SERIAL_DXE_H__ + +#define SERIAL_DXE_FILE_GUID { \ + 0xD3987D4B, 0x971A, 0x435F, \ + { 0x8C, 0xAF, 0x49, 0x67, 0xEB, 0x62, 0x72, 0x41 } \ + } + +extern EFI_GUID gSerialDxeFileGuid; + +#endif // __SERIAL_DXE_H__ -- Anthony PERARD