Remove two instances of ARGSUSED comment, and wrap lines nearby the

code that is to be changed.

Sponsored by:	The FreeBSD Foundation
MFC after:	1 week
This commit is contained in:
kib 2013-10-15 06:28:11 +00:00
parent ccb5ee0623
commit 58fc49ff4f

View File

@ -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;