diff options
author | Ard Biesheuvel <ard.biesheuvel@linaro.org> | 2020-03-04 12:56:46 +0100 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2020-03-04 17:42:43 +0000 |
commit | ed1c70cf1a954e857eb122892f3e510966dc4a9f (patch) | |
tree | 8252fbf6cd0d1821ce17c5af348e089253ef83e4 /ArmPlatformPkg | |
parent | 6c6fef024718578596a3554e6d287a89aa49b950 (diff) | |
download | edk2-ed1c70cf1a954e857eb122892f3e510966dc4a9f.tar.gz edk2-ed1c70cf1a954e857eb122892f3e510966dc4a9f.tar.bz2 edk2-ed1c70cf1a954e857eb122892f3e510966dc4a9f.zip |
ArmPlatformPkg/LcdGraphicsOutputDxe: add missing protocol dependency
This driver depends on the gEfiCpuArchProtocolGuid protocol but does
not declare it, and so this dependency gets satisfied 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 <ard.biesheuvel@linaro.org>
Reviewed-by: Leif Lindholm <leif@nuviainc.com>
Diffstat (limited to 'ArmPlatformPkg')
-rw-r--r-- | ArmPlatformPkg/Drivers/LcdGraphicsOutputDxe/LcdGraphicsOutputDxe.inf | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/ArmPlatformPkg/Drivers/LcdGraphicsOutputDxe/LcdGraphicsOutputDxe.inf b/ArmPlatformPkg/Drivers/LcdGraphicsOutputDxe/LcdGraphicsOutputDxe.inf index 2176e5a578..27453b2656 100644 --- a/ArmPlatformPkg/Drivers/LcdGraphicsOutputDxe/LcdGraphicsOutputDxe.inf +++ b/ArmPlatformPkg/Drivers/LcdGraphicsOutputDxe/LcdGraphicsOutputDxe.inf @@ -38,6 +38,7 @@ UefiLib
[Protocols]
+ gEfiCpuArchProtocolGuid
gEfiDevicePathProtocolGuid
gEfiGraphicsOutputProtocolGuid
|