From 8c2dc8100468096ae39af5d89a4d5ba13227294a Mon Sep 17 00:00:00 2001 From: christos Date: Tue, 18 Aug 2015 17:46:09 +0000 Subject: [PATCH] comment out tcpa printout since it has been split between server and client struct. --- usr.sbin/acpitools/acpidump/acpi.c | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/usr.sbin/acpitools/acpidump/acpi.c b/usr.sbin/acpitools/acpidump/acpi.c index 4daf597578a9..c9f0bb2140d8 100644 --- a/usr.sbin/acpitools/acpidump/acpi.c +++ b/usr.sbin/acpitools/acpidump/acpi.c @@ -1,4 +1,4 @@ -/* $NetBSD: acpi.c,v 1.10 2015/06/16 23:04:13 christos Exp $ */ +/* $NetBSD: acpi.c,v 1.11 2015/08/18 17:46:09 christos Exp $ */ /*- * Copyright (c) 1998 Doug Rabson @@ -30,7 +30,7 @@ */ #include -__RCSID("$NetBSD: acpi.c,v 1.10 2015/06/16 23:04:13 christos Exp $"); +__RCSID("$NetBSD: acpi.c,v 1.11 2015/08/18 17:46:09 christos Exp $"); #include #include @@ -1667,6 +1667,7 @@ acpi_handle_srat(ACPI_TABLE_HEADER *sdp) static void acpi_handle_tcpa(ACPI_TABLE_HEADER *sdp) { +#if 0 ACPI_TABLE_TCPA *tcpa; printf(BEGIN_COMMENT); @@ -1676,7 +1677,7 @@ acpi_handle_tcpa(ACPI_TABLE_HEADER *sdp) printf("\tMaximum Length of Event Log Area=%d\n", tcpa->MaxLogLength); printf("\tPhysical Address of Log Area=0x%08"PRIx64"\n", tcpa->LogAddress); - +#endif printf(END_COMMENT); }