diff options
author | Pierre Gondois <Pierre.Gondois@arm.com> | 2020-10-23 15:32:26 +0100 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2020-12-09 15:32:12 +0000 |
commit | a36a0f1d81a2502a922617cf99be0bb81de2f57a (patch) | |
tree | cdfe17c4d39361a4a028e052273b8d592d47dbe1 /ArmPlatformPkg | |
parent | c5d970a01e76c1a20f6bb009b32e479ad2444548 (diff) | |
download | edk2-a36a0f1d81a2502a922617cf99be0bb81de2f57a.tar.gz edk2-a36a0f1d81a2502a922617cf99be0bb81de2f57a.tar.bz2 edk2-a36a0f1d81a2502a922617cf99be0bb81de2f57a.zip |
ArmPlatformPkg: Fix Ecc error 10014 in LcdGraphicsOutputDxe
This patch fixes the following Ecc reported error:
No used module files found
The source file
[ArmPlatformPkg/Drivers/LcdGraphicsOutputDxe/LcdGraphicsOutputDxe.h]
is existing in module directory but it is not described
in INF file.
Files in [Sources.common] are also alphabetically re-ordered.
Signed-off-by: Pierre Gondois <Pierre.Gondois@arm.com>
Reviewed-by: Ard Biesheuvel <ard.biesheuvel@arm.com>
Diffstat (limited to 'ArmPlatformPkg')
-rw-r--r-- | ArmPlatformPkg/Drivers/LcdGraphicsOutputDxe/LcdGraphicsOutputDxe.inf | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/ArmPlatformPkg/Drivers/LcdGraphicsOutputDxe/LcdGraphicsOutputDxe.inf b/ArmPlatformPkg/Drivers/LcdGraphicsOutputDxe/LcdGraphicsOutputDxe.inf index 27453b2656..51bec36aed 100644 --- a/ArmPlatformPkg/Drivers/LcdGraphicsOutputDxe/LcdGraphicsOutputDxe.inf +++ b/ArmPlatformPkg/Drivers/LcdGraphicsOutputDxe/LcdGraphicsOutputDxe.inf @@ -2,7 +2,7 @@ #
# Component description file for LcdGraphicsOutputDxe module
#
-# Copyright (c) 2011-2012, ARM Ltd. All rights reserved.<BR>
+# Copyright (c) 2011 - 2020, Arm Limited. All rights reserved.<BR>
#
# SPDX-License-Identifier: BSD-2-Clause-Patent
#
@@ -17,8 +17,9 @@ ENTRY_POINT = LcdGraphicsOutputDxeInitialize
[Sources.common]
- LcdGraphicsOutputDxe.c
LcdGraphicsOutputBlt.c
+ LcdGraphicsOutputDxe.c
+ LcdGraphicsOutputDxe.h
[Packages]
ArmPlatformPkg/ArmPlatformPkg.dec
|