From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mail-wr1-f46.google.com (mail-wr1-f46.google.com [209.85.221.46]) by mx.groups.io with SMTP id smtpd.web09.10062.1583323128632187099 for ; Wed, 04 Mar 2020 03:58:49 -0800 Authentication-Results: mx.groups.io; dkim=pass header.i=@linaro.org header.s=google header.b=gYuqnITD; spf=pass (domain: linaro.org, ip: 209.85.221.46, mailfrom: ard.biesheuvel@linaro.org) Received: by mail-wr1-f46.google.com with SMTP id v11so95686wrm.9 for ; Wed, 04 Mar 2020 03:58:48 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google; h=from:to:cc:subject:date:message-id; bh=TdUT1+HCUXwfaOGFDEoljWrhoEwTkBQaWFmPw8FsaKs=; b=gYuqnITD/VYKr8aIkpjj+c4fRM6KiQ2QvkZ5Llw+zKQ6eLct0bliGKQ6AU46fQ2JGi Eif2yckaMmOc3TMcLcj0vRuUWpilXDXz7bndcuvIxD/ZO7p16fYUba1xGC26BnINxAM0 QECeW94lrM9oO+b0RpSlF8fjrTrWh2TNYygpKHp7K5Z/mBgFVadOC8282Eg7ts94DouV K7+3+2fIze6g1TW8PEuphVbyxjB0x0uglznrO1b8n3FHzCnkMFFQL6xHNU/Gf2gueH4A 8EFIIW8a3F8jwVjHeHLwBmFZeKAbVZSR1mZz75Q+jqfRQoFeonoWR5vDa27XJgzVMfdv ElTQ== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=TdUT1+HCUXwfaOGFDEoljWrhoEwTkBQaWFmPw8FsaKs=; b=SgR326nhWY/dd156t37MjkAoiG6Of4GQd9k+QhMKWNeeYcMukNd9nWyaqEkliG+bA7 7vfjk0VMNo/oI3en+/R0KDTW15hKduIva7+SvyFFBUEF+ZWWUevn+r8eh83mYIbwxpd5 3zO+5vVtC0NcDdf9Mp7W5sGQ2XrjKCvShAy2BC37/1877I45mbPPp/dNolg5kUrP3Rv4 f6ejVPAnK5Dhgol/qYVeBjm5MITGF9f0Ul2d4vML9Zu3B6z3R/ioyO7n68d6WmeK92pz 2i8c/qEL5rTEcBR1BrHYHbamtp7RVUHOXESazlhFx1ySuFk237r1Ijz/nUxoex7mG9bB pinQ== X-Gm-Message-State: ANhLgQ20/B2UvxGSNMY1gKi0Lazi6E5kbagG4E46atcn6UMIihbxV53v VMjt2pziDnoeLat+j5z2p2vCg4fiKElcdA== X-Google-Smtp-Source: ADFU+vsMnF+mzywa6YQujHKXJlJHohi0V9wAVmkvBCeu29EnVyh5uuVbRcDE4IWvZpG4Jlx8rOknDA== X-Received: by 2002:adf:de09:: with SMTP id b9mr3754883wrm.160.1583323126956; Wed, 04 Mar 2020 03:58:46 -0800 (PST) Return-Path: Received: from e123331-lin.home ([2a01:cb1d:112:6f00:816e:ff0d:fb69:f613]) by smtp.gmail.com with ESMTPSA id w206sm4037770wmg.11.2020.03.04.03.58.46 (version=TLS1_3 cipher=TLS_AES_256_GCM_SHA384 bits=256/256); Wed, 04 Mar 2020 03:58:46 -0800 (PST) From: "Ard Biesheuvel" To: devel@edk2.groups.io Cc: leif@nuviainc.com, Ard Biesheuvel Subject: [PATCH 1/1] ArmPlatformPkg/LcdGraphicsOutputDxe: add missing protocol dependency Date: Wed, 4 Mar 2020 12:58:41 +0100 Message-Id: <20200304115841.18243-1-ard.biesheuvel@linaro.org> X-Mailer: git-send-email 2.17.1 This driver depends on the gEfiCpuArchProtocolGuid protocol but does not declare it, and so this dependency gets satisfies transitively via ArmLib. However, ArmLib will drop this dependency as it does not actually use it, so declare it for LcdGraphicsOutputDxe instead. Signed-off-by: Ard Biesheuvel --- ArmPlatformPkg/Drivers/LcdGraphicsOutputDxe/LcdGraphicsOutputDxe.inf | 1 + 1 file changed, 1 insertion(+) diff --git a/ArmPlatformPkg/Drivers/LcdGraphicsOutputDxe/LcdGraphicsOutputDxe.inf b/ArmPlatformPkg/Drivers/LcdGraphicsOutputDxe/LcdGraphicsOutputDxe.inf index 2176e5a5789f..27453b265611 100644 --- a/ArmPlatformPkg/Drivers/LcdGraphicsOutputDxe/LcdGraphicsOutputDxe.inf +++ b/ArmPlatformPkg/Drivers/LcdGraphicsOutputDxe/LcdGraphicsOutputDxe.inf @@ -38,6 +38,7 @@ [LibraryClasses] UefiLib [Protocols] + gEfiCpuArchProtocolGuid gEfiDevicePathProtocolGuid gEfiGraphicsOutputProtocolGuid -- 2.17.1