diff options
author | 2013-05-30 16:15:01 +0000 | |
---|---|---|
committer | 2013-05-30 16:15:01 +0000 | |
commit | c06fda6d0724f63f24685adf5b3d7f3ead24829d (patch) | |
tree | 1f027428818a55ed1ab7b65fb609867de3c20ad9 /sys/dev/acpi/acpi.c | |
parent | Simplify hello holdtime calculation and stop the timeout timer if the (diff) | |
download | wireguard-openbsd-c06fda6d0724f63f24685adf5b3d7f3ead24829d.tar.xz wireguard-openbsd-c06fda6d0724f63f24685adf5b3d7f3ead24829d.zip |
Enforce ca_activate tree-walks over the entire heirarchy for all events,
cleaning up some shutdown-hook related code on the way.
(A few drivers related to sparc are still skipped at kettenis' request)
ok kettenis mlarkin, tested by many others too
Diffstat (limited to 'sys/dev/acpi/acpi.c')
-rw-r--r-- | sys/dev/acpi/acpi.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/sys/dev/acpi/acpi.c b/sys/dev/acpi/acpi.c index 603122a5f7e..8a43fb85352 100644 --- a/sys/dev/acpi/acpi.c +++ b/sys/dev/acpi/acpi.c @@ -1,4 +1,4 @@ -/* $OpenBSD: acpi.c,v 1.243 2013/04/18 18:30:41 deraadt Exp $ */ +/* $OpenBSD: acpi.c,v 1.244 2013/05/30 16:15:01 deraadt Exp $ */ /* * Copyright (c) 2005 Thorsten Lockert <tholo@sigmasoft.com> * Copyright (c) 2005 Jordan Hargrave <jordan@openbsd.org> @@ -154,8 +154,7 @@ void acpi_disable_allgpes(struct acpi_softc *); extern struct aml_node aml_root; struct cfattach acpi_ca = { - sizeof(struct acpi_softc), acpi_match, acpi_attach, NULL, - config_activate_children + sizeof(struct acpi_softc), acpi_match, acpi_attach }; struct cfdriver acpi_cd = { |