diff options
author | imp <imp@FreeBSD.org> | 2009-02-15 17:56:16 +0000 |
---|---|---|
committer | imp <imp@FreeBSD.org> | 2009-02-15 17:56:16 +0000 |
commit | ccf6b196ae656bd92a7a2b15dc2d54f5d43aace9 (patch) | |
tree | 82c5efaf93c4addf6ee38dfa1d54b4ab135edc70 /sys/sys | |
parent | 2b08fb6e8b2328729bcba43b64645d790ed605ef (diff) | |
download | FreeBSD-src-ccf6b196ae656bd92a7a2b15dc2d54f5d43aace9.zip FreeBSD-src-ccf6b196ae656bd92a7a2b15dc2d54f5d43aace9.tar.gz |
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@
Diffstat (limited to 'sys/sys')
-rw-r--r-- | sys/sys/conf.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/sys/sys/conf.h b/sys/sys/conf.h index 285376b..05c4bb5 100644 --- a/sys/sys/conf.h +++ b/sys/sys/conf.h @@ -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 */ |