summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJordan Hargrave <jordan@cvs.openbsd.org>2011-06-03 03:54:20 +0000
committerJordan Hargrave <jordan@cvs.openbsd.org>2011-06-03 03:54:20 +0000
commitb32b4e32195ed33c2e58be42384450e61848faa4 (patch)
treed437b05293fde36d5757151c5b82795f69cf8ed4
parent0f418b6c6d02e1cc01d85e98f6e7924cbdb01d8c (diff)
Remove unused structure members. Add depth field.
-rw-r--r--sys/dev/acpi/dsdt.h7
1 files changed, 3 insertions, 4 deletions
diff --git a/sys/dev/acpi/dsdt.h b/sys/dev/acpi/dsdt.h
index c1316d294ce..fc0f1a7696c 100644
--- a/sys/dev/acpi/dsdt.h
+++ b/sys/dev/acpi/dsdt.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: dsdt.h,v 1.58 2011/04/18 00:40:26 jordan Exp $ */
+/* $OpenBSD: dsdt.h,v 1.59 2011/06/03 03:54:19 jordan Exp $ */
/*
* Copyright (c) 2005 Marco Peereboom <marco@openbsd.org>
*
@@ -21,16 +21,15 @@
struct aml_scope {
struct acpi_softc *sc;
uint8_t *pos;
+ uint8_t *start;
uint8_t *end;
struct aml_node *node;
struct aml_scope *parent;
struct aml_value *locals;
struct aml_value *args;
- int nargs;
- int flags;
struct aml_value *retv;
- uint8_t *start;
int type;
+ int depth;
};