summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorArd Biesheuvel <ard.biesheuvel@linaro.org>2018-05-01 18:28:08 +0200
committerArd Biesheuvel <ard.biesheuvel@linaro.org>2018-05-02 10:04:38 +0200
commit0db6171fb5a63e8d58ee7cfdecf36f5c57ce9315 (patch)
tree53943efb8caa45076ce944c69f5c26c592009c0e
parentada17bc975be79620c126ae9a856e45c866f5701 (diff)
downloadedk2-platforms-0db6171fb5a63e8d58ee7cfdecf36f5c57ce9315.tar.xz
Silicon/AMD/Styx/AcpiTables: fix wrongly copy/pasted variable name
Rename the variable holding the Styx PPTT table to mStyxPpttTable. Contributed-under: TianoCore Contribution Agreement 1.1 Signed-off-by: Ard Biesheuvel <ard.biesheuvel@linaro.org> Reviewed-by: Leif Lindholm <leif.lindholm@linaro.org>
-rw-r--r--Silicon/AMD/Styx/AcpiTables/Pptt.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/Silicon/AMD/Styx/AcpiTables/Pptt.c b/Silicon/AMD/Styx/AcpiTables/Pptt.c
index d9d7c494d8..1746bbe8b5 100644
--- a/Silicon/AMD/Styx/AcpiTables/Pptt.c
+++ b/Silicon/AMD/Styx/AcpiTables/Pptt.c
@@ -156,7 +156,7 @@ typedef struct {
} \
}
-STATIC STYX_PPTT_TABLE mSynQuacerPpttTable = {
+STATIC STYX_PPTT_TABLE mStyxPpttTable = {
{
AMD_ACPI_HEADER(EFI_ACPI_6_2_PROCESSOR_PROPERTIES_TOPOLOGY_TABLE_STRUCTURE_SIGNATURE,
STYX_PPTT_TABLE,
@@ -221,5 +221,5 @@ PpttHeader (
VOID
)
{
- return (EFI_ACPI_DESCRIPTION_HEADER *)&mSynQuacerPpttTable.Pptt.Header;
+ return (EFI_ACPI_DESCRIPTION_HEADER *)&mStyxPpttTable.Pptt.Header;
}