From mboxrd@z Thu Jan 1 00:00:00 1970 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: citrix.com, ip: 216.71.155.168, mailfrom: anthony.perard@citrix.com) Received: from esa5.hc3370-68.iphmx.com (esa5.hc3370-68.iphmx.com [216.71.155.168]) by groups.io with SMTP; Wed, 29 May 2019 04:37:32 -0700 Authentication-Results: esa5.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 (esa5.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=esa5.hc3370-68.iphmx.com; envelope-from="anthony.perard@citrix.com"; x-sender="anthony.perard@citrix.com"; x-conformance=sidf_compatible Received-SPF: Pass (esa5.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=esa5.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 (esa5.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=esa5.hc3370-68.iphmx.com; envelope-from="anthony.perard@citrix.com"; x-sender="postmaster@MIAPEX02MSOL02.citrite.net"; x-conformance=sidf_compatible IronPort-SDR: R9mlAQfJkEeHpbyNiADJtm2FuTjFgjkZfNqZeTRYqVnEyysQXWtqQ2COLYUv2NlKKaQod5fpsQ xjpidTm4vJk8injg4nv6vro2wJQwXSUqqSKgUd/dmQ2jVCkCmN6gLJ1XB8TacS5SUUT1wAdDYp gGAHEmEnGih7HQfQgwQCN/ivIQEr+15AdMYTiyyPVcyYT7biNpGnTiv0mH+MrRnVbf26muEKeH NlB7R83AdDs/9RCfwgDcrLikD7ennbsUioZAeYR1test6upMUO+cB7EXyEK14hnDIV1J6V4ChL QqA= X-SBRS: 2.7 X-MesageID: 1012272 X-Ironport-Server: esa5.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="1012272" 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 0/4] Define SERIAL_DXE_FILE_GUID only once Date: Wed, 29 May 2019 12:37:19 +0100 Message-ID: <20190529113723.23186-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 already been defined twice and the GUID is been used once without defining the macro. This patch series define the macro in MdeModulePkg where the SerialDxe is, and replace all other use by this new one. 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-v1 Anthony PERARD (4): MdeModulePkg: Add SERIAL_DXE_FILE_GUID ArmVirtPkg/PlatformBootManagerLib: Use SERIAL_DXE_FILE_GUID from MdeModulePkg ArmPkg/PlatformBootManagerLib: Use SERIAL_DXE_FILE_GUID from MdeModulePkg UefiPayloadPkg/PlatformBootManagerLib: Use SERIAL_DXE_FILE_GUID from MdeModulePkg MdeModulePkg/MdeModulePkg.dec | 3 +++ MdeModulePkg/Include/Guid/SerialDxe.h | 19 +++++++++++++++++++ .../PlatformBootManagerLib/PlatformBm.c | 6 +----- .../PlatformBootManagerLib/PlatformBm.c | 6 +----- .../PlatformBootManagerLib/PlatformConsole.c | 3 ++- 5 files changed, 26 insertions(+), 11 deletions(-) create mode 100644 MdeModulePkg/Include/Guid/SerialDxe.h -- Anthony PERARD