Module Name: src
Committed By: christos
Date: Thu Feb 22 01:50:26 UTC 2018
Modified Files:
src/sys/dev/acpi: tpm_acpi.c
Log Message:
notyet an unused variable.
To generate a diff of this commit:
cvs rdiff -u -r1.5 -r1.6 src/sys/dev/acpi/tpm_acpi.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/dev/acpi/tpm_acpi.c
diff -u src/sys/dev/acpi/tpm_acpi.c:1.5 src/sys/dev/acpi/tpm_acpi.c:1.6
--- src/sys/dev/acpi/tpm_acpi.c:1.5 Sat Oct 28 00:53:55 2017
+++ src/sys/dev/acpi/tpm_acpi.c Wed Feb 21 20:50:26 2018
@@ -1,4 +1,4 @@
-/* $NetBSD: tpm_acpi.c,v 1.5 2017/10/28 04:53:55 riastradh Exp $ */
+/* $NetBSD: tpm_acpi.c,v 1.6 2018/02/22 01:50:26 christos Exp $ */
/*-
* Copyright (c) 2012 The NetBSD Foundation, Inc.
@@ -52,7 +52,7 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: tpm_acpi.c,v 1.5 2017/10/28 04:53:55 riastradh Exp $");
+__KERNEL_RCSID(0, "$NetBSD: tpm_acpi.c,v 1.6 2018/02/22 01:50:26 christos Exp $");
#include <sys/param.h>
#include <sys/device.h>
@@ -85,11 +85,13 @@ CFATTACH_DECL_NEW(tpm_acpi, sizeof(struc
* Supported device IDs
*/
+#ifdef notyet
static const char * const tpm_acpi_ids[] = {
"IFX0101",
"IFX0102",
NULL
};
+#endif
static int
tpm_acpi_match(device_t parent, cfdata_t match, void *aux)