diff options
author | 2006-04-11 02:36:49 +0000 | |
---|---|---|
committer | 2006-04-11 02:36:49 +0000 | |
commit | e759f6ce41cd2fc18d29c2f2cf96ec6e36d60a40 (patch) | |
tree | ee6ebb4ff3bc3ac799574b018680294d309d72a1 | |
parent | Add acpi_resume(struct acpi_softc *sc), which calls some AML methods, (diff) | |
download | wireguard-openbsd-e759f6ce41cd2fc18d29c2f2cf96ec6e36d60a40.tar.xz wireguard-openbsd-e759f6ce41cd2fc18d29c2f2cf96ec6e36d60a40.zip |
KNF.
-rw-r--r-- | sys/dev/acpi/acpi.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/dev/acpi/acpi.c b/sys/dev/acpi/acpi.c index b1d8678666b..9c4743b6383 100644 --- a/sys/dev/acpi/acpi.c +++ b/sys/dev/acpi/acpi.c @@ -1,4 +1,4 @@ -/* $OpenBSD: acpi.c,v 1.47 2006/04/11 02:35:35 gwk Exp $ */ +/* $OpenBSD: acpi.c,v 1.48 2006/04/11 02:36:49 marco Exp $ */ /* * Copyright (c) 2005 Thorsten Lockert <tholo@sigmasoft.com> * Copyright (c) 2005 Jordan Hargrave <jordan@openbsd.org> @@ -44,8 +44,8 @@ int acpi_debug = 11; #define ACPIEN_RETRIES 15 -void acpi_isr_thread(void *); -void acpi_create_thread(void *); +void acpi_isr_thread(void *); +void acpi_create_thread(void *); int acpi_match(struct device *, void *, void *); void acpi_attach(struct device *, struct device *, void *); |