From owner-svn-src-all@FreeBSD.ORG Sat Dec 20 15:11:00 2008 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 EDCEE106564A; Sat, 20 Dec 2008 15:11:00 +0000 (UTC) (envelope-from nwhitehorn@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id DE3E68FC14; Sat, 20 Dec 2008 15:11:00 +0000 (UTC) (envelope-from nwhitehorn@FreeBSD.org) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id mBKFB02x007022; Sat, 20 Dec 2008 15:11:00 GMT (envelope-from nwhitehorn@svn.freebsd.org) Received: (from nwhitehorn@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id mBKFB02t007021; Sat, 20 Dec 2008 15:11:00 GMT (envelope-from nwhitehorn@svn.freebsd.org) Message-Id: <200812201511.mBKFB02t007021@svn.freebsd.org> From: Nathan Whitehorn Date: Sat, 20 Dec 2008 15:11: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: r186355 - head/sys/sun4v/include 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: Sat, 20 Dec 2008 15:11:01 -0000 Author: nwhitehorn Date: Sat Dec 20 15:11:00 2008 New Revision: 186355 URL: http://svn.freebsd.org/changeset/base/186355 Log: Missed the sun4v update to ofw_machdep.h in the OFW modularization commit. Modified: head/sys/sun4v/include/ofw_machdep.h Modified: head/sys/sun4v/include/ofw_machdep.h ============================================================================== --- head/sys/sun4v/include/ofw_machdep.h Sat Dec 20 09:36:40 2008 (r186354) +++ head/sys/sun4v/include/ofw_machdep.h Sat Dec 20 15:11:00 2008 (r186355) @@ -29,10 +29,15 @@ #define _MACHINE_OFW_MACHDEP_H_ #include +#include +#include + +typedef uint64_t cell_t; int OF_decode_addr(phandle_t, int, int *, bus_addr_t *); void OF_getetheraddr(device_t, u_char *); void cpu_shutdown(void *); -void openfirmware_exit(void *); +int ofw_entry(void *); +void ofw_exit(void *); #endif /* _MACHINE_OFW_MACHDEP_H_ */