DynamicTablesPkg: Fix issues reported by EDKII CI
The TianoCore EDKII project has introduced a Core CI infrastructure using TianoCore EDKII Tools PIP modules: * https://pypi.org/project/edk2-pytool-library/ * https://pypi.org/project/edk2-pytool-extensions/ More information on configuring the environment and running the builds can be found in edk2\.pytool\Readme.md This patch fixes the issues reported by the CI system mainly around fixing typo errors and package dec and dsc files. A subsequent patch enables the CI builds for the DynamicTablesPkg. Signed-off-by: Sami Mujawar <sami.mujawar@arm.com> Reviewed-by: Alexei Fedorov <Alexei.Fedorov@arm.com>
This commit is contained in:
committed by
mergify[bot]
parent
9565ab67c2
commit
e3f8605a23
@@ -1,7 +1,7 @@
|
||||
/** @file
|
||||
MADT Table Generator
|
||||
|
||||
Copyright (c) 2017 - 2019, ARM Limited. All rights reserved.
|
||||
Copyright (c) 2017 - 2020, ARM Limited. All rights reserved.
|
||||
SPDX-License-Identifier: BSD-2-Clause-Patent
|
||||
|
||||
@par Reference(s):
|
||||
@@ -332,24 +332,24 @@ AddGICMsiFrameInfoList (
|
||||
/** Update the GIC Redistributor Information.
|
||||
|
||||
@param [in] Gicr Pointer to GIC Redistributor structure.
|
||||
@param [in] GicRedisributorInfo Pointer to the GIC Redistributor Info.
|
||||
@param [in] GicRedistributorInfo Pointer to the GIC Redistributor Info.
|
||||
**/
|
||||
STATIC
|
||||
VOID
|
||||
AddGICRedistributor (
|
||||
IN EFI_ACPI_6_3_GICR_STRUCTURE * CONST Gicr,
|
||||
IN CONST CM_ARM_GIC_REDIST_INFO * CONST GicRedisributorInfo
|
||||
IN CONST CM_ARM_GIC_REDIST_INFO * CONST GicRedistributorInfo
|
||||
)
|
||||
{
|
||||
ASSERT (Gicr != NULL);
|
||||
ASSERT (GicRedisributorInfo != NULL);
|
||||
ASSERT (GicRedistributorInfo != NULL);
|
||||
|
||||
Gicr->Type = EFI_ACPI_6_3_GICR;
|
||||
Gicr->Length = sizeof (EFI_ACPI_6_3_GICR_STRUCTURE);
|
||||
Gicr->Reserved = EFI_ACPI_RESERVED_WORD;
|
||||
Gicr->DiscoveryRangeBaseAddress =
|
||||
GicRedisributorInfo->DiscoveryRangeBaseAddress;
|
||||
Gicr->DiscoveryRangeLength = GicRedisributorInfo->DiscoveryRangeLength;
|
||||
GicRedistributorInfo->DiscoveryRangeBaseAddress;
|
||||
Gicr->DiscoveryRangeLength = GicRedistributorInfo->DiscoveryRangeLength;
|
||||
}
|
||||
|
||||
/** Add the GIC Redistributor Information to the MADT Table.
|
||||
|
Reference in New Issue
Block a user