Module Name:    src
Committed By:   christos
Date:           Tue Aug 18 10:41:28 UTC 2015

Modified Files:
        src/sys/dev/acpi: acpi.c

Log Message:
add extra argument to method.


To generate a diff of this commit:
cvs rdiff -u -r1.259 -r1.260 src/sys/dev/acpi/acpi.c

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: src/sys/dev/acpi/acpi.c
diff -u src/sys/dev/acpi/acpi.c:1.259 src/sys/dev/acpi/acpi.c:1.260
--- src/sys/dev/acpi/acpi.c:1.259	Sat Oct 25 17:00:20 2014
+++ src/sys/dev/acpi/acpi.c	Tue Aug 18 06:41:28 2015
@@ -1,4 +1,4 @@
-/*	$NetBSD: acpi.c,v 1.259 2014/10/25 21:00:20 christos Exp $	*/
+/*	$NetBSD: acpi.c,v 1.260 2015/08/18 10:41:28 christos Exp $	*/
 
 /*-
  * Copyright (c) 2003, 2007 The NetBSD Foundation, Inc.
@@ -100,7 +100,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: acpi.c,v 1.259 2014/10/25 21:00:20 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: acpi.c,v 1.260 2015/08/18 10:41:28 christos Exp $");
 
 #include "opt_acpi.h"
 #include "opt_pcifixup.h"
@@ -1408,7 +1408,7 @@ acpi_enter_sleep_state(int state)
 
 			(void)pmf_system_bus_resume(PMF_Q_NONE);
 			(void)AcpiLeaveSleepState(state);
-			(void)AcpiSetFirmwareWakingVector(0);
+			(void)AcpiSetFirmwareWakingVector(0, 0);
 			(void)pmf_system_resume(PMF_Q_NONE);
 		}
 

Reply via email to