According to section 5.3.5, EDK II C Coding Standards Specification (https://edk2-docs.gitbook.io/edk-ii-c-coding-standards-specification) the header file guard names must not be prefixed with underscores as they are reserved for compiler implementation.
Therefore, fix the header file include guard as per the specification guidelines. Signed-off-by: Sami Mujawar <sami.muja...@arm.com> --- MdePkg/Include/IndustryStandard/IoRemappingTable.h | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/MdePkg/Include/IndustryStandard/IoRemappingTable.h b/MdePkg/Include/IndustryStandard/IoRemappingTable.h index 90504e3a6715be7facc6450c6ff0e1eab92cd3c7..731217441438a00dd5ff0bedf2010598d48d6dbf 100644 --- a/MdePkg/Include/IndustryStandard/IoRemappingTable.h +++ b/MdePkg/Include/IndustryStandard/IoRemappingTable.h @@ -9,8 +9,8 @@ SPDX-License-Identifier: BSD-2-Clause-Patent **/ -#ifndef __IO_REMAPPING_TABLE_H__ -#define __IO_REMAPPING_TABLE_H__ +#ifndef IO_REMAPPING_TABLE_H_ +#define IO_REMAPPING_TABLE_H_ #include <IndustryStandard/Acpi.h> -- 'Guid(CE165669-3EF3-493F-B85D-6190EE5B9759)' -=-=-=-=-=-=-=-=-=-=-=- Groups.io Links: You receive all messages sent to this group. View/Reply Online (#76531): https://edk2.groups.io/g/devel/message/76531 Mute This Topic: https://groups.io/mt/83560203/21656 Group Owner: devel+ow...@edk2.groups.io Unsubscribe: https://edk2.groups.io/g/devel/unsub [arch...@mail-archive.com] -=-=-=-=-=-=-=-=-=-=-=-