diff options
author | Marco Peereboom <marco@cvs.openbsd.org> | 2006-03-05 14:46:47 +0000 |
---|---|---|
committer | Marco Peereboom <marco@cvs.openbsd.org> | 2006-03-05 14:46:47 +0000 |
commit | 232055cb4d121ed9e93d5ddaa18e361e4011ec5f (patch) | |
tree | 0a1c8571e823f5381315fdc3d0324e99d2bf3ae7 /sys/dev/acpi/dsdt.h | |
parent | be9b50319381ef4a0d73fa9de5e54198ea2d85e2 (diff) |
Hook acpi to ddb since we need to be able to do some live debugging.
Lots and lots of help from miod@ and deraadt@
ok deraadt@ miod@
Diffstat (limited to 'sys/dev/acpi/dsdt.h')
-rw-r--r-- | sys/dev/acpi/dsdt.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/sys/dev/acpi/dsdt.h b/sys/dev/acpi/dsdt.h index 8c09586d580..419005fb7af 100644 --- a/sys/dev/acpi/dsdt.h +++ b/sys/dev/acpi/dsdt.h @@ -1,4 +1,4 @@ -/* $OpenBSD: dsdt.h,v 1.9 2006/02/22 19:29:24 jordan Exp $ */ +/* $OpenBSD: dsdt.h,v 1.10 2006/03/05 14:46:46 marco Exp $ */ /* * Copyright (c) 2005 Marco Peereboom <marco@openbsd.org> * @@ -30,6 +30,7 @@ int aml_eval_name(struct acpi_softc *, struct aml_node *, const char *, void aml_showvalue(struct aml_value *); void aml_walktree(struct aml_node *); +void aml_walkroot(void); struct aml_value *aml_allocint(uint64_t); struct aml_value *aml_allocstr(const char *); |