Skip to content

Commit

Permalink
AmdPlatformPkg: Fix stuart_ci_build failures
Browse files Browse the repository at this point in the history
Cc: Abner Chang <abner.chang@amd.com>
Cc: Paul Grimes <paul.grimes@amd.com>
Signed-off-by: Abdul Lateef Attar <AbdulLateef.Attar@amd.com>
  • Loading branch information
Abdul Lateef Attar authored and Abdul Lateef Attar committed Sep 17, 2024
1 parent 66fdb4d commit eeb7422
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion Platform/AMD/AmdPlatformPkg/AmdPlatformPkg.dec
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@
gAmdPlatformPkgTokenSpaceGuid.PcdAmdSmbiosType9SlotCharacteristics2.AsyncSurpriseRemoval|0
gAmdPlatformPkgTokenSpaceGuid.PcdAmdSmbiosType9SlotCharacteristics2.FlexbusSlotCxl10Capable|0
gAmdPlatformPkgTokenSpaceGuid.PcdAmdSmbiosType9SlotCharacteristics2.FlexbusSlotCxl20Capable|0
gAmdPlatformPkgTokenSpaceGuid.PcdAmdSmbiosType9SlotCharacteristics2.Reserved|0
gAmdPlatformPkgTokenSpaceGuid.PcdAmdSmbiosType9SlotCharacteristics2.FlexbusSlotCxl30Capable|0

#
# SPI PCDs
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ GenerateLocalNmi (
**/
EFI_STATUS
GenerateIntrruptSourceOverride (
GenerateinterruptSourceOverride (
IN OUT EFI_ACPI_6_5_INTERRUPT_SOURCE_OVERRIDE_STRUCTURE **InterruptSourceOverride,
IN OUT UINTN *InterruptSourceOverrideSize
)
Expand Down Expand Up @@ -343,7 +343,7 @@ GenerateProcessorLocalApicStructure (
}
}

/// Increatement the NumSocket and ThreadsPerCore by 1, as it is 0 based
/// increment the NumSocket and ThreadsPerCore by 1, as it is 0 based
NumSocket++;
ThreadsPerCore++;

Expand Down Expand Up @@ -704,7 +704,7 @@ AcpiMadtLibConstructor (
TableSize += IoApicSize;

/// Generate Interrupt Source Override Structure
Status = GenerateIntrruptSourceOverride (&InterruptSourceOverride, &InterruptSourceOverrideSize);
Status = GenerateinterruptSourceOverride (&InterruptSourceOverride, &InterruptSourceOverrideSize);
if (EFI_ERROR (Status)) {
DEBUG ((
DEBUG_ERROR,
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ GenerateApicIdToUidMap (
}
}

// Increarement the SocketCount by 1 because socket numbering starts from 0
// increment the SocketCount by 1 because socket numbering starts from 0
SocketCount++;

if (SocketCount > 1) {
Expand Down

0 comments on commit eeb7422

Please sign in to comment.