From owner-svn-src-head@FreeBSD.ORG Tue Apr 13 15:51:26 2010 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3AA871065672; Tue, 13 Apr 2010 15:51:26 +0000 (UTC) (envelope-from marcel@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 2A8038FC0A; Tue, 13 Apr 2010 15:51:26 +0000 (UTC) Received: from svn.freebsd.org (localhost [127.0.0.1]) by svn.freebsd.org (8.14.3/8.14.3) with ESMTP id o3DFpQpb094517; Tue, 13 Apr 2010 15:51:26 GMT (envelope-from marcel@svn.freebsd.org) Received: (from marcel@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id o3DFpQGP094501; Tue, 13 Apr 2010 15:51:26 GMT (envelope-from marcel@svn.freebsd.org) Message-Id: <201004131551.o3DFpQGP094501@svn.freebsd.org> From: Marcel Moolenaar Date: Tue, 13 Apr 2010 15:51:26 +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: r206556 - head/sys/ia64/include X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 13 Apr 2010 15:51:26 -0000 Author: marcel Date: Tue Apr 13 15:51:25 2010 New Revision: 206556 URL: http://svn.freebsd.org/changeset/base/206556 Log: o s/u_int64_t/uint64_t/g o style(9) fixes. Modified: head/sys/ia64/include/pal.h Modified: head/sys/ia64/include/pal.h ============================================================================== --- head/sys/ia64/include/pal.h Tue Apr 13 12:10:55 2010 (r206555) +++ head/sys/ia64/include/pal.h Tue Apr 13 15:51:25 2010 (r206556) @@ -108,20 +108,19 @@ struct ia64_pal_result { int64_t pal_status; - u_int64_t pal_result[3]; + uint64_t pal_result[3]; }; -extern struct ia64_pal_result - ia64_call_pal_static(u_int64_t proc, u_int64_t arg1, - u_int64_t arg2, u_int64_t arg3); -extern struct ia64_pal_result - ia64_call_pal_static_physical(u_int64_t proc, u_int64_t arg1, - u_int64_t arg2, u_int64_t arg3); -extern struct ia64_pal_result - ia64_call_pal_stacked(u_int64_t proc, u_int64_t arg1, - u_int64_t arg2, u_int64_t arg3); -extern struct ia64_pal_result - ia64_call_pal_stacked_physical(u_int64_t proc, u_int64_t arg1, - u_int64_t arg2, u_int64_t arg3); +struct ia64_pal_result ia64_call_pal_static(uint64_t proc, uint64_t arg1, + uint64_t arg2, uint64_t arg3); + +struct ia64_pal_result ia64_call_pal_static_physical(uint64_t proc, + uint64_t arg1, uint64_t arg2, uint64_t arg3); + +struct ia64_pal_result ia64_call_pal_stacked(uint64_t proc, uint64_t arg1, + uint64_t arg2, uint64_t arg3); + +struct ia64_pal_result ia64_call_pal_stacked_physical(uint64_t proc, + uint64_t arg1, uint64_t arg2, uint64_t arg3); #endif /* _MACHINE_PAL_H_ */