diff options
author | Gordon Willem Klok <gwk@cvs.openbsd.org> | 2006-04-11 02:28:11 +0000 |
---|---|---|
committer | Gordon Willem Klok <gwk@cvs.openbsd.org> | 2006-04-11 02:28:11 +0000 |
commit | 7a1e6e2ecdeadbb20c6dda6a5840cf5822200190 (patch) | |
tree | 071195facd293a3158c9b21b01f23c2fa495a24b /sys/dev/acpi/acpivar.h | |
parent | 6748bf3f1d552fd22e660a6d3ca52d46f0f87f84 (diff) |
Discover some ACPI sleep related methods, and call them at the
appropriate time in acpi_enter_sleep_state().
ok marco@
Diffstat (limited to 'sys/dev/acpi/acpivar.h')
-rw-r--r-- | sys/dev/acpi/acpivar.h | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/sys/dev/acpi/acpivar.h b/sys/dev/acpi/acpivar.h index e60369979ea..53c4c1ed244 100644 --- a/sys/dev/acpi/acpivar.h +++ b/sys/dev/acpi/acpivar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: acpivar.h,v 1.20 2006/02/22 19:29:24 jordan Exp $ */ +/* $OpenBSD: acpivar.h,v 1.21 2006/04/11 02:28:10 gwk Exp $ */ /* * Copyright (c) 2005 Thorsten Lockert <tholo@sigmasoft.com> * @@ -148,7 +148,13 @@ struct acpi_softc { u_int32_t sc_gpe_sts; u_int32_t sc_gpe_en; struct acpi_thread *sc_thread; - + + struct aml_node *sc_tts; + struct aml_node *sc_pts; + struct aml_node *sc_bfs; + struct aml_node *sc_gts; + struct aml_node *sc_wak; + int sc_state; }; #define GPE_NONE 0x00 |