Skip site navigation (1)Skip section navigation (2)
Date:      Fri, 26 Nov 2010 21:30:14 +0000 (UTC)
From:      Jung-uk Kim <jkim@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org
Subject:   svn commit: r215900 - stable/8/sys/amd64/acpica
Message-ID:  <201011262130.oAQLUEqJ081077@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: jkim
Date: Fri Nov 26 21:30:14 2010
New Revision: 215900
URL: http://svn.freebsd.org/changeset/base/215900

Log:
  MFC:	r210940
  
  Correct argument order of acpi_restorecpu().

Modified:
  stable/8/sys/amd64/acpica/acpi_wakeup.c
Directory Properties:
  stable/8/sys/   (props changed)
  stable/8/sys/amd64/include/xen/   (props changed)
  stable/8/sys/cddl/contrib/opensolaris/   (props changed)
  stable/8/sys/contrib/dev/acpica/   (props changed)
  stable/8/sys/contrib/pf/   (props changed)

Modified: stable/8/sys/amd64/acpica/acpi_wakeup.c
==============================================================================
--- stable/8/sys/amd64/acpica/acpi_wakeup.c	Fri Nov 26 21:27:13 2010	(r215899)
+++ stable/8/sys/amd64/acpica/acpi_wakeup.c	Fri Nov 26 21:30:14 2010	(r215900)
@@ -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 *);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201011262130.oAQLUEqJ081077>