From patchwork Fri Jul 20 18:30:55 2012 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Colin Ian King X-Patchwork-Id: 172323 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from chlorine.canonical.com (chlorine.canonical.com [91.189.94.204]) by ozlabs.org (Postfix) with ESMTP id A39EE2C035C for ; Sat, 21 Jul 2012 04:31:02 +1000 (EST) Received: from localhost ([127.0.0.1] helo=chlorine.canonical.com) by chlorine.canonical.com with esmtp (Exim 4.71) (envelope-from ) id 1SsHye-000383-AZ for incoming@patchwork.ozlabs.org; Fri, 20 Jul 2012 18:31:00 +0000 Received: from youngberry.canonical.com ([91.189.89.112]) by chlorine.canonical.com with esmtp (Exim 4.71) (envelope-from ) id 1SsHyc-00037y-Ey for fwts-devel@lists.ubuntu.com; Fri, 20 Jul 2012 18:30:58 +0000 Received: from 74-95-45-185-oregon.hfc.comcastbusiness.net ([74.95.45.185] helo=localhost) by youngberry.canonical.com with esmtpsa (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1SsHyc-0007JC-3Z for fwts-devel@lists.ubuntu.com; Fri, 20 Jul 2012 18:30:58 +0000 From: Colin King To: fwts-devel@lists.ubuntu.com Subject: [PATCH] acpi: acpidump: Add stub for MPST Date: Fri, 20 Jul 2012 11:30:55 -0700 Message-Id: <1342809055-14962-1-git-send-email-colin.king@canonical.com> X-Mailer: git-send-email 1.7.10.4 X-BeenThere: fwts-devel@lists.ubuntu.com X-Mailman-Version: 2.1.13 Precedence: list List-Id: Firmware Test Suite Development List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: fwts-devel-bounces@lists.ubuntu.com Errors-To: fwts-devel-bounces@lists.ubuntu.com From: Colin Ian King MPST is a non-trivial table and should be dumped out in an annotated form at some point, however, there is no demand for this at the moment so just add a place holder for this table at the moment. Signed-off-by: Colin Ian King Acked-by: Keng-Yu Lin Acked-by: Ivan Hu --- src/acpi/acpidump/acpidump.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/acpi/acpidump/acpidump.c b/src/acpi/acpidump/acpidump.c index 9b65703..636631a 100644 --- a/src/acpi/acpidump/acpidump.c +++ b/src/acpi/acpidump/acpidump.c @@ -1603,6 +1603,7 @@ typedef struct { #define acpidump_einj acpi_dump_raw_table #define acpidump_hest acpi_dump_raw_table #define acpidump_msct acpi_dump_raw_table +#define acpidump_mpst acpi_dump_raw_table static acpidump_table_vec table_vec[] = { { "APIC", acpidump_madt, 1 }, @@ -1623,6 +1624,7 @@ static acpidump_table_vec table_vec[] = { { "HEST", acpidump_hest, 1 }, { "HPET", acpidump_hpet, 1 }, { "MCFG", acpidump_mcfg, 1 }, + { "MPST", acpidump_mpst, 1 }, { "MSCT", acpidump_msct, 1 }, { "PSDT", acpidump_amlcode, 1 }, { "RASF", acpidump_rasf, 1 },