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 esa1.hc3370-68.iphmx.com (esa1.hc3370-68.iphmx.com []) by groups.io with SMTP; Thu, 06 Jun 2019 06:15:03 -0700 Authentication-Results: esa1.hc3370-68.iphmx.com; dkim=none (message not signed) header.i=none; spf=None smtp.pra=anthony.perard@citrix.com; spf=SoftFail smtp.mailfrom=anthony.perard@citrix.com; spf=None smtp.helo=postmaster@mail.citrix.com Received-SPF: None (esa1.hc3370-68.iphmx.com: no sender authenticity information available from domain of anthony.perard@citrix.com) identity=pra; client-ip=162.221.158.21; receiver=esa1.hc3370-68.iphmx.com; envelope-from="anthony.perard@citrix.com"; x-sender="anthony.perard@citrix.com"; x-conformance=sidf_compatible Received-SPF: SoftFail (esa1.hc3370-68.iphmx.com: domain of anthony.perard@citrix.com is inclined to not designate 162.221.158.21 as permitted sender) identity=mailfrom; client-ip=162.221.158.21; receiver=esa1.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 include:spf.citrix.com include:spf2.citrix.com include:ironport.citrix.com exists:%{i}._spf.mta.salesforce.com ~all" Received-SPF: None (esa1.hc3370-68.iphmx.com: no sender authenticity information available from domain of postmaster@mail.citrix.com) identity=helo; client-ip=162.221.158.21; receiver=esa1.hc3370-68.iphmx.com; envelope-from="anthony.perard@citrix.com"; x-sender="postmaster@mail.citrix.com"; x-conformance=sidf_compatible IronPort-SDR: Z7ZmGxinNc4BbQym5mxbt3n5ccgnLICIP1DxEmNK/J8PD64/pVRCxXavWy8+3XYCHK8kpNj6yE 582vluNruaMssYo9rHjEmR2N+OCucaHfuj8VfDyQvlPcRX2hN5z4J8J/CBHyD9jiIPGdTdUYu9 PQNyxnJtDHktnyOtUmvCvNqaIRvbSD7b0B5OeMRp9kAS3bw3ouShQz2UHVf8sNTakJSmmHgOhM p/fEodyisj6q6pSJp1Nn1/lTEmgbxNlX94PeAYDvN5i3SFGtI33VfHShsZoAUcAV2+DAGhd+si /Fk= X-SBRS: -0.9 X-MesageID: 1407176 X-Ironport-Server: esa1.hc3370-68.iphmx.com X-Remote-IP: 162.221.158.21 X-Policy: $RELAYED X-IronPort-AV: E=Sophos;i="5.63,559,1557201600"; d="scan'208";a="1407176" From: "Anthony PERARD" To: CC: Ray Ni , Julien Grall , "Ard Biesheuvel" , Leif Lindholm , Laszlo Ersek , Jian J Wang , Hao A Wu , Star Zeng , Anthony PERARD Subject: [PATCH v2 0/4] Define EDKII_SERIAL_PORT_LIB_VENDOR_GUID Date: Thu, 6 Jun 2019 14:14:55 +0100 Message-ID: <20190606131459.1464-1-anthony.perard@citrix.com> X-Mailer: git-send-email 2.21.0 MIME-Version: 1.0 Return-Path: anthony.perard@citrix.com Content-Transfer-Encoding: 8bit Content-Type: text/plain The macro SERIAL_DXE_FILE_GUID is been defined twice and the GUID is been used once without defining the macro. This patch series define a macro in MdeModulePkg where the SerialDxe is, and replace all other use by this new one, EDKII_SERIAL_PORT_LIB_VENDOR_GUID. Note that I haven't build/test those changes, but I have test the first patch by applying a similar change to a patch series I'm working on. Patch series available in this git branch: https://xenbits.xen.org/git-http/people/aperard/ovmf.git br.serial-dxe-guid-v2 Thanks. Anthony PERARD (4): MdeModulePkg: Introduce EDKII_SERIAL_PORT_LIB_VENDOR_GUID ArmVirtPkg/PlatformBootManagerLib: Use EDKII_SERIAL_PORT_LIB_VENDOR_GUID from MdeModulePkg ArmPkg/PlatformBootManagerLib: Use EDKII_SERIAL_PORT_LIB_VENDOR_GUID from MdeModulePkg UefiPayloadPkg/PlatformBootManagerLib: Use EDKII_SERIAL_PORT_LIB_VENDOR_GUID from MdeModulePkg MdeModulePkg/MdeModulePkg.dec | 3 +++ .../Universal/SerialDxe/SerialDxe.inf | 1 + .../Include/Guid/SerialPortLibVendor.h | 19 +++++++++++++++++++ .../PlatformBootManagerLib/PlatformBm.c | 8 ++------ .../PlatformBootManagerLib/PlatformBm.c | 8 ++------ MdeModulePkg/Universal/SerialDxe/SerialIo.c | 3 ++- .../PlatformBootManagerLib/PlatformConsole.c | 3 ++- 7 files changed, 31 insertions(+), 14 deletions(-) create mode 100644 MdeModulePkg/Include/Guid/SerialPortLibVendor.h -- Anthony PERARD