From owner-svn-src-head@FreeBSD.ORG Sun Feb 15 17:56:16 2009 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 65ED81065675; Sun, 15 Feb 2009 17:56:16 +0000 (UTC) (envelope-from imp@FreeBSD.org) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:4f8:fff6::2c]) by mx1.freebsd.org (Postfix) with ESMTP id 549378FC14; Sun, 15 Feb 2009 17:56:16 +0000 (UTC) (envelope-from imp@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 n1FHuGg5084843; Sun, 15 Feb 2009 17:56:16 GMT (envelope-from imp@svn.freebsd.org) Received: (from imp@localhost) by svn.freebsd.org (8.14.3/8.14.3/Submit) id n1FHuGiv084842; Sun, 15 Feb 2009 17:56:16 GMT (envelope-from imp@svn.freebsd.org) Message-Id: <200902151756.n1FHuGiv084842@svn.freebsd.org> From: Warner Losh Date: Sun, 15 Feb 2009 17:56:16 +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: r188650 - head/sys/sys 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: Sun, 15 Feb 2009 17:56:17 -0000 Author: imp Date: Sun Feb 15 17:56:16 2009 New Revision: 188650 URL: http://svn.freebsd.org/changeset/base/188650 Log: Make dumper_t definition conform more closely to stlye(9). This also avoid keywords in other languages that may have been present before. Submitted by: Andriy Gapon, jkoshy@ Modified: head/sys/sys/conf.h Modified: head/sys/sys/conf.h ============================================================================== --- head/sys/sys/conf.h Sun Feb 15 16:16:38 2009 (r188649) +++ head/sys/sys/conf.h Sun Feb 15 17:56:16 2009 (r188650) @@ -141,11 +141,11 @@ typedef void d_purge_t(struct cdev *dev) typedef int d_spare2_t(struct cdev *dev); typedef int dumper_t( - void *priv, /* Private to the driver. */ - void *virtual, /* Virtual (mapped) address. */ - vm_offset_t physical, /* Physical address of virtual. */ - off_t offset, /* Byte-offset to write at. */ - size_t length); /* Number of bytes to dump. */ + void *_priv, /* Private to the driver. */ + void *_virtual, /* Virtual (mapped) address. */ + vm_offset_t _physical, /* Physical address of virtual. */ + off_t _offset, /* Byte-offset to write at. */ + size_t _length); /* Number of bytes to dump. */ #endif /* _KERNEL */