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@
This commit is contained in:
Warner Losh 2009-02-15 17:56:16 +00:00
parent 57e9cb8cda
commit c3661cd0e7

View file

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