diff options
author | Thordur I. Bjornsson <thib@cvs.openbsd.org> | 2006-10-31 13:49:45 +0000 |
---|---|---|
committer | Thordur I. Bjornsson <thib@cvs.openbsd.org> | 2006-10-31 13:49:45 +0000 |
commit | dabc2a46f591302942463e0ed63c9813e1cfb4ef (patch) | |
tree | 1cfa0de6a4b5a9d34cddbabb2d15a92bd0ac1df3 /sys/dev/acpi | |
parent | 783f6e58f6e86d87416e197fb7f5cbcefdbba96d (diff) |
add missing prototype for aml_evalinteger()
ok macro@
Diffstat (limited to 'sys/dev/acpi')
-rw-r--r-- | sys/dev/acpi/dsdt.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/dev/acpi/dsdt.c b/sys/dev/acpi/dsdt.c index 3ee6bbe592b..cb3797d4951 100644 --- a/sys/dev/acpi/dsdt.c +++ b/sys/dev/acpi/dsdt.c @@ -1,4 +1,4 @@ -/* $OpenBSD: dsdt.c,v 1.61 2006/10/30 18:37:07 jordan Exp $ */ +/* $OpenBSD: dsdt.c,v 1.62 2006/10/31 13:49:44 thib Exp $ */ /* * Copyright (c) 2005 Jordan Hargrave <jordan@openbsd.org> * @@ -76,6 +76,8 @@ int aml_tstbit(const u_int8_t *, int); void aml_setbit(u_int8_t *, int, int); void aml_bufcpy(void *, int, const void *, int, int); +int aml_evalinteger(struct acpi_softc *, struct aml_node *, const char *, + int, struct aml_value *, int64_t *); void _aml_delref(struct aml_value **val, const char *, int); |