diff options
-rw-r--r-- | sys/dev/acpi/acpivar.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/dev/acpi/acpivar.h b/sys/dev/acpi/acpivar.h index 874081b3397..3528e233cb5 100644 --- a/sys/dev/acpi/acpivar.h +++ b/sys/dev/acpi/acpivar.h @@ -1,4 +1,4 @@ -/* $OpenBSD: acpivar.h,v 1.52 2009/11/02 19:27:46 kettenis Exp $ */ +/* $OpenBSD: acpivar.h,v 1.53 2009/11/23 15:08:02 mlarkin Exp $ */ /* * Copyright (c) 2005 Thorsten Lockert <tholo@sigmasoft.com> * @@ -220,6 +220,7 @@ struct acpi_softc { struct aml_node *sc_pts; struct aml_node *sc_bfs; struct aml_node *sc_gts; + struct aml_node *sc_sst; struct aml_node *sc_wak; int sc_state; struct acpiec_softc *sc_ec; /* XXX assume single EC */ @@ -279,7 +280,6 @@ void acpi_powerdown(void); void acpi_reset(void); void acpi_cpu_flush(struct acpi_softc *, int); int acpi_sleep_state(struct acpi_softc *, int); -void acpi_resume(struct acpi_softc *); int acpi_prepare_sleep_state(struct acpi_softc *, int); int acpi_enter_sleep_state(struct acpi_softc *, int); int acpi_sleep_machdep(struct acpi_softc *, int); |