mirror of https://github.com/acidanthera/audk.git
MdePkg: Fix broken coding style in Acpi64.h
Bugzilla: 3516 (https://bugzilla.tianocore.org/show_bug.cgi?id=3516) Fix a coding style issue raised by EccCheck. This issue (error code 7008) has been fixed by moving a nested union out of its structure. Also add Acpi64.h to the "IgnoreFiles" list to stop the CI flagging naming errors present prior to ACPI 64. Signed-off-by: Chris Jones <christopher.jones@arm.com> Reviewed-by: Liming Gao <gaoliming@byosoft.com.cn> Reviewed-by: Sami Mujawar <sami.mujawar@arm.com>
This commit is contained in:
parent
605c4a1ff2
commit
3d359ff905
|
@ -787,23 +787,26 @@ typedef struct {
|
|||
UINT8 Reserved[12];
|
||||
} EFI_ACPI_6_4_DEVICE_HANDLE_PCI;
|
||||
|
||||
///
|
||||
/// Device Handle
|
||||
///
|
||||
typedef union {
|
||||
EFI_ACPI_6_4_DEVICE_HANDLE_ACPI Acpi;
|
||||
EFI_ACPI_6_4_DEVICE_HANDLE_PCI Pci;
|
||||
} EFI_ACPI_6_4_DEVICE_HANDLE;
|
||||
|
||||
///
|
||||
/// Generic Initiator Affinity Structure
|
||||
///
|
||||
typedef struct {
|
||||
UINT8 Type;
|
||||
UINT8 Length;
|
||||
UINT8 Reserved1;
|
||||
UINT8 DeviceHandleType;
|
||||
UINT32 ProximityDomain;
|
||||
|
||||
union {
|
||||
EFI_ACPI_6_4_DEVICE_HANDLE_ACPI Acpi;
|
||||
EFI_ACPI_6_4_DEVICE_HANDLE_PCI Pci;
|
||||
} DeviceHandle;
|
||||
|
||||
UINT32 Flags;
|
||||
UINT8 Reserved2[4];
|
||||
UINT8 Type;
|
||||
UINT8 Length;
|
||||
UINT8 Reserved1;
|
||||
UINT8 DeviceHandleType;
|
||||
UINT32 ProximityDomain;
|
||||
EFI_ACPI_6_4_DEVICE_HANDLE DeviceHandle;
|
||||
UINT32 Flags;
|
||||
UINT8 Reserved2[4];
|
||||
} EFI_ACPI_6_4_GENERIC_INITIATOR_AFFINITY_STRUCTURE;
|
||||
|
||||
///
|
||||
|
|
|
@ -3,6 +3,7 @@
|
|||
#
|
||||
# Copyright (c) Microsoft Corporation
|
||||
# Copyright (c) 2020, Intel Corporation. All rights reserved.<BR>
|
||||
# Copyright (c) 2021, Arm Limited. All rights reserved.<BR>
|
||||
# SPDX-License-Identifier: BSD-2-Clause-Patent
|
||||
##
|
||||
{
|
||||
|
@ -19,6 +20,7 @@
|
|||
],
|
||||
## Both file path and directory path are accepted.
|
||||
"IgnoreFiles": [
|
||||
"Include/IndustryStandard/Acpi64.h"
|
||||
]
|
||||
},
|
||||
## options defined ci/Plugin/CompilerPlugin
|
||||
|
|
Loading…
Reference in New Issue