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.web11.13913.1614271085403463603 for ; Thu, 25 Feb 2021 08:38:05 -0800 Authentication-Results: mx.groups.io; dkim=missing; spf=pass (domain: arm.com, ip: 217.140.110.172, mailfrom: pierre.gondois@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 03B6BD6E; Thu, 25 Feb 2021 08:38:05 -0800 (PST) Received: from e120189.arm.com (unknown [10.57.9.114]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPA id C62C83F73D; Thu, 25 Feb 2021 08:38:03 -0800 (PST) From: "PierreGondois" To: devel@edk2.groups.io, ardb+tianocore@kernel.org, leif@nuviainc.com, sami.mujawar@arm.com Subject: [PATCH v1 2/3] ArmPlatformPkg: Fix Ecc error 9001 Date: Thu, 25 Feb 2021 16:37:36 +0000 Message-Id: <20210225163737.15727-3-Pierre.Gondois@arm.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20210225163737.15727-1-Pierre.Gondois@arm.com> References: <20210225163737.15727-1-Pierre.Gondois@arm.com> From: Pierre Gondois This patch fixes the following Ecc reported error: INF/DEC/DSC/FDF file header comment should begin with "## @file" or "# @file" at the very top file Signed-off-by: Pierre Gondois --- The changes can be seen at: https://github.com/PierreARM/edk2/tree/1641_CI_fixes_for_ArmPlatformPkg_v1 .../Drivers/PL061GpioDxe/PL061GpioDxe.inf | 14 +++++++------- .../SP805WatchdogDxe/SP805WatchdogDxe.inf | 16 ++++++++-------- 2 files changed, 15 insertions(+), 15 deletions(-) diff --git a/ArmPlatformPkg/Drivers/PL061GpioDxe/PL061GpioDxe.inf b/ArmPlatformPkg/Drivers/PL061GpioDxe/PL061GpioDxe.inf index 9c598bb66c76..3a71be4db4fd 100644 --- a/ArmPlatformPkg/Drivers/PL061GpioDxe/PL061GpioDxe.inf +++ b/ArmPlatformPkg/Drivers/PL061GpioDxe/PL061GpioDxe.inf @@ -1,10 +1,10 @@ -/** @file -* -* Copyright (c) 2011 - 2020, Arm Limited. All rights reserved.
-* -* SPDX-License-Identifier: BSD-2-Clause-Patent -* -**/ +## @file +# +# Copyright (c) 2011 - 2020, Arm Limited. All rights reserved.
+# +# SPDX-License-Identifier: BSD-2-Clause-Patent +# +## [Defines] INF_VERSION = 0x00010005 diff --git a/ArmPlatformPkg/Drivers/SP805WatchdogDxe/SP805WatchdogDxe.inf b/ArmPlatformPkg/Drivers/SP805WatchdogDxe/SP805WatchdogDxe.inf index fa87d92359ac..f8c370ff2888 100644 --- a/ArmPlatformPkg/Drivers/SP805WatchdogDxe/SP805WatchdogDxe.inf +++ b/ArmPlatformPkg/Drivers/SP805WatchdogDxe/SP805WatchdogDxe.inf @@ -1,11 +1,11 @@ -/** @file -* -* Copyright (c) 2011 - 2020, Arm Limited. All rights reserved.
-* Copyright (c) 2018, Linaro Limited. All rights reserved. -* -* SPDX-License-Identifier: BSD-2-Clause-Patent -* -**/ +## @file +# +# Copyright (c) 2011 - 2020, Arm Limited. All rights reserved.
+# Copyright (c) 2018, Linaro Limited. All rights reserved. +# +# SPDX-License-Identifier: BSD-2-Clause-Patent +# +## [Defines] INF_VERSION = 0x00010005 -- 2.17.1