diff options
author | kib <kib@FreeBSD.org> | 2013-10-25 16:31:28 +0000 |
---|---|---|
committer | kib <kib@FreeBSD.org> | 2013-10-25 16:31:28 +0000 |
commit | f2cf20f78fcdd44d412de89a584d6d98ef5c585c (patch) | |
tree | a73ca1cbf69af1d4e890abca422109da03d088d1 /sys | |
parent | 19e284f6516fc91d27b804bf63aee9d9b19cf6b9 (diff) | |
download | FreeBSD-src-f2cf20f78fcdd44d412de89a584d6d98ef5c585c.zip FreeBSD-src-f2cf20f78fcdd44d412de89a584d6d98ef5c585c.tar.gz |
MFC r256501:
Remove two instances of ARGSUSED comment, and wrap lines nearby the
code that is to be changed.
Approved by: re (glebius)
Diffstat (limited to 'sys')
-rw-r--r-- | sys/fs/devfs/devfs_vnops.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/sys/fs/devfs/devfs_vnops.c b/sys/fs/devfs/devfs_vnops.c index 711a7ea..dcc10c87 100644 --- a/sys/fs/devfs/devfs_vnops.c +++ b/sys/fs/devfs/devfs_vnops.c @@ -1168,9 +1168,9 @@ devfs_print(struct vop_print_args *ap) return (0); } -/* ARGSUSED */ static int -devfs_read_f(struct file *fp, struct uio *uio, struct ucred *cred, int flags, struct thread *td) +devfs_read_f(struct file *fp, struct uio *uio, struct ucred *cred, + int flags, struct thread *td) { struct cdev *dev; int ioflag, error, ref; @@ -1643,9 +1643,9 @@ devfs_truncate_f(struct file *fp, off_t length, struct ucred *cred, struct threa return (vnops.fo_truncate(fp, length, cred, td)); } -/* ARGSUSED */ static int -devfs_write_f(struct file *fp, struct uio *uio, struct ucred *cred, int flags, struct thread *td) +devfs_write_f(struct file *fp, struct uio *uio, struct ucred *cred, + int flags, struct thread *td) { struct cdev *dev; int error, ioflag, ref; |