From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by mx.groups.io with SMTP id smtpd.web12.750.1588267018852967459 for ; Thu, 30 Apr 2020 10:16:59 -0700 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: arm.com, ip: 217.140.110.172, mailfrom: ard.biesheuvel@arm.com) Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 7E37C1045; Thu, 30 Apr 2020 10:16:58 -0700 (PDT) Received: from e123331-lin.home (unknown [172.31.20.19]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 9FA523F73D; Thu, 30 Apr 2020 10:16:57 -0700 (PDT) From: "Ard Biesheuvel" To: devel@edk2.groups.io Cc: leif@nuviainc.com, Ard Biesheuvel Subject: [PATCH edk2-platforms v3 1/8] Omap35xxPkg/LcdGraphicsOutputDxe: add missing protocol reference Date: Thu, 30 Apr 2020 19:16:42 +0200 Message-Id: <20200430171650.24139-2-ard.biesheuvel@arm.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20200430171650.24139-1-ard.biesheuvel@arm.com> References: <20200430171650.24139-1-ard.biesheuvel@arm.com> ArmPkg's ArmLib recently dropped an unnecessary reference to gEfiCpuArchProtocolGuid, causing the build to fail for BeagleBoard, due to the fact that LcdGraphicsOutputDxe does need it, but lacks the reference, which no longer gets satisfied transitively through ArmLib. So add the reference to LcdGraphicsOutputDxe directly. Signed-off-by: Ard Biesheuvel --- Silicon/TexasInstruments/Omap35xxPkg/LcdGraphicsOutputDxe/LcdGraphicsOutputDxe.inf | 1 + 1 file changed, 1 insertion(+) diff --git a/Silicon/TexasInstruments/Omap35xxPkg/LcdGraphicsOutputDxe/LcdGraphicsOutputDxe.inf b/Silicon/TexasInstruments/Omap35xxPkg/LcdGraphicsOutputDxe/LcdGraphicsOutputDxe.inf index 65624ce7e189..d07be1c74cf5 100644 --- a/Silicon/TexasInstruments/Omap35xxPkg/LcdGraphicsOutputDxe/LcdGraphicsOutputDxe.inf +++ b/Silicon/TexasInstruments/Omap35xxPkg/LcdGraphicsOutputDxe/LcdGraphicsOutputDxe.inf @@ -37,6 +37,7 @@ [LibraryClasses] BaseMemoryLib [Protocols] + gEfiCpuArchProtocolGuid gEfiDevicePathProtocolGuid gEfiGraphicsOutputProtocolGuid gEfiDevicePathToTextProtocolGuid -- 2.17.1