summaryrefslogtreecommitdiff
path: root/sys/dev/acpi/dsdt.h
diff options
context:
space:
mode:
authorMarco Peereboom <marco@cvs.openbsd.org>2006-02-19 04:50:48 +0000
committerMarco Peereboom <marco@cvs.openbsd.org>2006-02-19 04:50:48 +0000
commit145770fa9bc425bb5ca9cbf0fad51f7c2a42a256 (patch)
tree2646a521dbd9d32c1a59804d363c8b8d0ed976f6 /sys/dev/acpi/dsdt.h
parent5f50945fa963bcbb2a85a9a31a6cd5434c8fa835 (diff)
jordan:
Enable interrupts. Added peripheral code to make this work. marco: Replace softintr and other types of interrupts with a handler with context. Fixed interrupt magic for GPEs. Some KNF This is work done by jordan and I but has to be a single commit.
Diffstat (limited to 'sys/dev/acpi/dsdt.h')
-rw-r--r--sys/dev/acpi/dsdt.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/acpi/dsdt.h b/sys/dev/acpi/dsdt.h
index 47dfbfae6a7..1316c724cde 100644
--- a/sys/dev/acpi/dsdt.h
+++ b/sys/dev/acpi/dsdt.h
@@ -1,4 +1,4 @@
-/* $OpenBSD: dsdt.h,v 1.6 2006/02/16 21:11:13 jordan Exp $ */
+/* $OpenBSD: dsdt.h,v 1.7 2006/02/19 04:50:47 marco Exp $ */
/*
* Copyright (c) 2005 Marco Peereboom <marco@openbsd.org>
*
@@ -43,4 +43,6 @@ int aml_comparevalue(struct acpi_context *, int, struct aml_value *, struct am
int64_t aml_val2int(struct acpi_context *, struct aml_value *);
+struct aml_node *aml_searchname(struct aml_node *, const char *);
+
#endif /* __DEV_ACPI_DSDT_H__ */