diff options
author | Jordan Hargrave <jordan@cvs.openbsd.org> | 2007-02-06 18:56:32 +0000 |
---|---|---|
committer | Jordan Hargrave <jordan@cvs.openbsd.org> | 2007-02-06 18:56:32 +0000 |
commit | a16c573bb2f59896157000e1db867fae861640af (patch) | |
tree | 3428a2e6519cf0b5fe27b73d7223a522b075757d /sys/dev/acpi/dsdt.h | |
parent | 7bcb40987b41efda8dd493434be65ee5d6371643 (diff) |
Added support for calling _OSI method
Display byte/word/string/nameref for aml_mnem function
ok marco@
Diffstat (limited to 'sys/dev/acpi/dsdt.h')
-rw-r--r-- | sys/dev/acpi/dsdt.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/acpi/dsdt.h b/sys/dev/acpi/dsdt.h index 546cf2350e9..9b5e0641fbc 100644 --- a/sys/dev/acpi/dsdt.h +++ b/sys/dev/acpi/dsdt.h @@ -1,4 +1,4 @@ -/* $OpenBSD: dsdt.h,v 1.24 2006/12/26 23:58:08 marco Exp $ */ +/* $OpenBSD: dsdt.h,v 1.25 2007/02/06 18:56:31 jordan Exp $ */ /* * Copyright (c) 2005 Marco Peereboom <marco@openbsd.org> * @@ -47,7 +47,7 @@ struct aml_opcode { const char *aml_eisaid(u_int32_t); const char *aml_args(int); -const char *aml_mnem(int); +const char *aml_mnem(int, uint8_t *); int64_t aml_val2int(struct aml_value *); struct aml_node *aml_searchname(struct aml_node *, const void *); struct aml_node *aml_createname(struct aml_node *, const void *, |