Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/sys/arch/x86/acpi dup the argument of the wakeup vector. XXX...



details:   https://anonhg.NetBSD.org/src/rev/022a051d3aaa
branches:  trunk
changeset: 339965:022a051d3aaa
user:      christos <christos%NetBSD.org@localhost>
date:      Tue Aug 18 10:42:41 2015 +0000

description:
dup the argument of the wakeup vector. XXX: is that correct?

diffstat:

 sys/arch/x86/acpi/acpi_wakeup.c |  8 ++++----
 1 files changed, 4 insertions(+), 4 deletions(-)

diffs (36 lines):

diff -r e7ab21671946 -r 022a051d3aaa sys/arch/x86/acpi/acpi_wakeup.c
--- a/sys/arch/x86/acpi/acpi_wakeup.c   Tue Aug 18 10:41:28 2015 +0000
+++ b/sys/arch/x86/acpi/acpi_wakeup.c   Tue Aug 18 10:42:41 2015 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: acpi_wakeup.c,v 1.38 2014/02/25 18:30:08 pooka Exp $   */
+/*     $NetBSD: acpi_wakeup.c,v 1.39 2015/08/18 10:42:41 christos Exp $        */
 
 /*-
  * Copyright (c) 2002, 2011 The NetBSD Foundation, Inc.
@@ -30,7 +30,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: acpi_wakeup.c,v 1.38 2014/02/25 18:30:08 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: acpi_wakeup.c,v 1.39 2015/08/18 10:42:41 christos Exp $");
 
 /*-
  * Copyright (c) 2001 Takanori Watanabe <takawata%jp.freebsd.org@localhost>
@@ -62,7 +62,7 @@
  */
 
 #include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: acpi_wakeup.c,v 1.38 2014/02/25 18:30:08 pooka Exp $");
+__KERNEL_RCSID(0, "$NetBSD: acpi_wakeup.c,v 1.39 2015/08/18 10:42:41 christos Exp $");
 
 #include <sys/param.h>
 #include <sys/systm.h>
@@ -300,7 +300,7 @@
                return -1;
        }
 
-       AcpiSetFirmwareWakingVector(acpi_wakeup_paddr);
+       AcpiSetFirmwareWakingVector(acpi_wakeup_paddr, acpi_wakeup_paddr);
 
        s = splhigh();
        fpusave_cpu(true);



Home | Main Index | Thread Index | Old Index