From 05db09e05691051e86d08255b46a67d066711d2a Mon Sep 17 00:00:00 2001 From: Jung-uk Kim Date: Fri, 6 Aug 2010 15:59:00 +0000 Subject: [PATCH] Correct argument order of acpi_restorecpu(), which was forgotten in r210804. --- sys/amd64/acpica/acpi_wakeup.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/amd64/acpica/acpi_wakeup.c b/sys/amd64/acpica/acpi_wakeup.c index 6bdf6583e134..f7324ab5cf15 100644 --- a/sys/amd64/acpica/acpi_wakeup.c +++ b/sys/amd64/acpica/acpi_wakeup.c @@ -71,7 +71,7 @@ extern struct pcb **susppcbs; static struct pcb **susppcbs; #endif -int acpi_restorecpu(struct pcb *, vm_offset_t); +int acpi_restorecpu(vm_offset_t, struct pcb *); static void *acpi_alloc_wakeup_handler(void); static void acpi_stop_beep(void *);