From owner-svn-src-all@FreeBSD.ORG Fri Feb 3 21:21:01 2012 Return-Path: Delivered-To: svn-src-all@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 27E161065674; Fri, 3 Feb 2012 21:21:01 +0000 (UTC) (envelope-from jkim@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 128EF8FC16; Fri, 3 Feb 2012 21:21:01 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.4/8.14.4) with ESMTP id q13LL0s3004569; Fri, 3 Feb 2012 21:21:00 GMT (envelope-from jkim@svn.freebsd.org) Received: (from jkim@localhost) by svn.freebsd.org (8.14.4/8.14.4/Submit) id q13LL0uA004567; Fri, 3 Feb 2012 21:21:00 GMT (envelope-from jkim@svn.freebsd.org) Message-Id: <201202032121.q13LL0uA004567@svn.freebsd.org> From: Jung-uk Kim Date: Fri, 3 Feb 2012 21:21:00 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Cc: Subject: svn commit: r230957 - head/sys/amd64/acpica X-BeenThere: svn-src-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: "SVN commit messages for the entire src tree \(except for " user" and " projects" \)" List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 03 Feb 2012 21:21:01 -0000 Author: jkim Date: Fri Feb 3 21:21:00 2012 New Revision: 230957 URL: http://svn.freebsd.org/changeset/base/230957 Log: Fix a function prototype to reflect reality. No functional change. Modified: head/sys/amd64/acpica/acpi_wakeup.c Modified: head/sys/amd64/acpica/acpi_wakeup.c ============================================================================== --- head/sys/amd64/acpica/acpi_wakeup.c Fri Feb 3 20:27:14 2012 (r230956) +++ head/sys/amd64/acpica/acpi_wakeup.c Fri Feb 3 21:21:00 2012 (r230957) @@ -74,7 +74,7 @@ static struct pcb **susppcbs; static void **suspfpusave; #endif -int acpi_restorecpu(vm_offset_t, struct pcb *); +int acpi_restorecpu(uint64_t, vm_offset_t); static void *acpi_alloc_wakeup_handler(void); static void acpi_stop_beep(void *);