Skip site navigation (1)Skip section navigation (2)
Date:      Sun, 15 Feb 2009 17:56:16 +0000 (UTC)
From:      Warner Losh <imp@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r188650 - head/sys/sys
Message-ID:  <200902151756.n1FHuGiv084842@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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 */
 



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