From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga14.intel.com (mga14.intel.com [192.55.52.115]) (using TLSv1 with cipher CAMELLIA256-SHA (256/256 bits)) (No client certificate requested) by ml01.01.org (Postfix) with ESMTPS id 7B1F41A1E6B for ; Wed, 19 Oct 2016 19:00:45 -0700 (PDT) Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by fmsmga103.fm.intel.com with ESMTP; 19 Oct 2016 19:00:45 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.31,516,1473145200"; d="scan'208";a="21544153" Received: from ray-dev.ccr.corp.intel.com ([10.239.9.25]) by fmsmga005.fm.intel.com with ESMTP; 19 Oct 2016 19:00:44 -0700 From: Ruiyu Ni To: edk2-devel@lists.01.org Cc: Dandan Bi Date: Thu, 20 Oct 2016 10:00:39 +0800 Message-Id: <20161020020040.81780-3-ruiyu.ni@intel.com> X-Mailer: git-send-email 2.9.0.windows.1 In-Reply-To: <20161020020040.81780-1-ruiyu.ni@intel.com> References: <20161020020040.81780-1-ruiyu.ni@intel.com> Subject: [PATCH 2/3] MdeModulePkg/GraphicsOutputDxe.inf: Correct the protocol/GUID usages X-BeenThere: edk2-devel@lists.01.org X-Mailman-Version: 2.1.21 Precedence: list List-Id: EDK II Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 20 Oct 2016 02:00:45 -0000 Contributed-under: TianoCore Contribution Agreement 1.0 Signed-off-by: Ruiyu Ni Cc: Dandan Bi --- .../Universal/Console/GraphicsOutputDxe/GraphicsOutputDxe.inf | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/MdeModulePkg/Universal/Console/GraphicsOutputDxe/GraphicsOutputDxe.inf b/MdeModulePkg/Universal/Console/GraphicsOutputDxe/GraphicsOutputDxe.inf index 0f7106d..cd4a7c2 100644 --- a/MdeModulePkg/Universal/Console/GraphicsOutputDxe/GraphicsOutputDxe.inf +++ b/MdeModulePkg/Universal/Console/GraphicsOutputDxe/GraphicsOutputDxe.inf @@ -49,10 +49,10 @@ [LibraryClasses] HobLib [Guids] - gEfiGraphicsInfoHobGuid # HOB TO_START - gEfiGraphicsDeviceInfoHobGuid # HOB TO_START + gEfiGraphicsInfoHobGuid ## TO_START ## HOB + gEfiGraphicsDeviceInfoHobGuid ## TO_START ## HOB [Protocols] - gEfiGraphicsOutputProtocolGuid # PROTOCOL BY_START - gEfiDevicePathProtocolGuid # PROTOCOL BY_START - gEfiPciIoProtocolGuid # PROTOCOL TO_START + gEfiGraphicsOutputProtocolGuid ## BY_START + gEfiDevicePathProtocolGuid ## BY_START + gEfiPciIoProtocolGuid ## TO_START -- 2.9.0.windows.1