From patchwork Tue Apr 6 06:49:16 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Alex Hung X-Patchwork-Id: 1462615 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (no SPF record) smtp.mailfrom=lists.ubuntu.com (client-ip=91.189.94.19; helo=huckleberry.canonical.com; envelope-from=fwts-devel-bounces@lists.ubuntu.com; receiver=) Received: from huckleberry.canonical.com (huckleberry.canonical.com [91.189.94.19]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 4FDyn54f5Lz9sVt for ; Tue, 6 Apr 2021 16:49:28 +1000 (AEST) Received: from localhost ([127.0.0.1] helo=huckleberry.canonical.com) by huckleberry.canonical.com with esmtp (Exim 4.86_2) (envelope-from ) id 1lTfWc-0001si-Tg; Tue, 06 Apr 2021 06:49:22 +0000 Received: from youngberry.canonical.com ([91.189.89.112]) by huckleberry.canonical.com with esmtps (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.86_2) (envelope-from ) id 1lTfWa-0001sc-NI for fwts-devel@lists.ubuntu.com; Tue, 06 Apr 2021 06:49:20 +0000 Received: from [104.157.111.226] (helo=canonical.com) by youngberry.canonical.com with esmtpsa (TLS1.2:ECDHE_RSA_AES_128_GCM_SHA256:128) (Exim 4.86_2) (envelope-from ) id 1lTfWa-0001V6-76; Tue, 06 Apr 2021 06:49:20 +0000 From: Alex Hung To: fwts-devel@lists.ubuntu.com Subject: [PATCH] acpi: acpitables: add revision tests for PPTT Date: Tue, 6 Apr 2021 00:49:16 -0600 Message-Id: <20210406064916.877858-1-alex.hung@canonical.com> X-Mailer: git-send-email 2.31.1 MIME-Version: 1.0 X-BeenThere: fwts-devel@lists.ubuntu.com X-Mailman-Version: 2.1.20 Precedence: list List-Id: Firmware Test Suite Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: fwts-devel-bounces@lists.ubuntu.com Sender: "fwts-devel" Signed-off-by: Alex Hung Acked-by: Colin Ian King Acked-by: Ivan Hu --- src/acpi/acpitables/acpitables.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/acpi/acpitables/acpitables.c b/src/acpi/acpitables/acpitables.c index 7d74a1f7..54722acf 100644 --- a/src/acpi/acpitables/acpitables.c +++ b/src/acpi/acpitables/acpitables.c @@ -171,6 +171,7 @@ static const fwts_acpi_table_rev acpi_62_rev[] = { {"NFIT", 1}, {"PCCT", 1}, {"PMTT", 1}, + {"PPTT", 1}, {"RASF", 1}, {"RSDT", 1}, {"SBST", 1}, @@ -199,6 +200,7 @@ static const fwts_acpi_table_rev acpi_63_rev[] = { {"NFIT", 1}, {"PCCT", 2}, {"PMTT", 1}, + {"PPTT", 2}, {"RASF", 1}, {"RSDT", 1}, {"SBST", 1}, @@ -229,6 +231,7 @@ static const fwts_acpi_table_rev acpi_64_rev[] = { {"PCCT", 2}, {"PHAT", 1}, {"PMTT", 2}, + {"PPTT", 3}, {"RASF", 1}, {"RSDT", 1}, {"SBST", 1},