diff options
author | Pierre Gondois <Pierre.Gondois@arm.com> | 2020-12-22 12:37:03 +0000 |
---|---|---|
committer | mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> | 2021-04-15 19:53:39 +0000 |
commit | 3c0c1d3faea5718206764e44bd26fc7667c4fb9f (patch) | |
tree | 7414bf1d83468f962311a53ae92338cb01102069 /ArmPkg | |
parent | f21e72135dee2eb835d80d0669dee45cf90db37a (diff) | |
download | edk2-3c0c1d3faea5718206764e44bd26fc7667c4fb9f.tar.gz |
ArmPkg: Rename include guard in ArmGicLib.h
Edk2 coding standard states that:
"Names starting with one or two underscores, such as
_MACRO_GUARD_FILE_NAME_H_, must not be used."
Ref:
https://edk2-docs.gitbook.io/edk-ii-c-coding-standards-specification/
5_source_files/53_include_files#
5-3-5-all-include-file-contents-must-be-protected-by-a-include-guard
Signed-off-by: Pierre Gondois <Pierre.Gondois@arm.com>
Reviewed-by: Sami Mujawar <sami.mujawar@arm.com>
Diffstat (limited to 'ArmPkg')
-rw-r--r-- | ArmPkg/Include/Library/ArmGicLib.h | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ArmPkg/Include/Library/ArmGicLib.h b/ArmPkg/Include/Library/ArmGicLib.h index 7bcfc00111..b4c320be11 100644 --- a/ArmPkg/Include/Library/ArmGicLib.h +++ b/ArmPkg/Include/Library/ArmGicLib.h @@ -1,13 +1,13 @@ /** @file
*
-* Copyright (c) 2011-2018, ARM Limited. All rights reserved.
+* Copyright (c) 2011-2021, Arm Limited. All rights reserved.<BR>
*
* SPDX-License-Identifier: BSD-2-Clause-Patent
*
**/
-#ifndef __ARMGIC_H
-#define __ARMGIC_H
+#ifndef ARMGIC_H_
+#define ARMGIC_H_
#include <Library/ArmGicArchLib.h>
@@ -333,4 +333,4 @@ ArmGicV3SetPriorityMask ( IN UINTN Priority
);
-#endif
+#endif // ARMGIC_H_
|