svn commit: r188650 - head/sys/sys

Warner Losh imp at FreeBSD.org
Sun Feb 15 09:56:17 PST 2009


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 */
 


More information about the svn-src-head mailing list