mirror of
https://github.com/opnsense/src.git
synced 2026-04-28 01:28:00 -04:00
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:
parent
57e9cb8cda
commit
c3661cd0e7
1 changed files with 5 additions and 5 deletions
|
|
@ -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 */
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue