summaryrefslogtreecommitdiffstats
path: root/sys/fs
diff options
context:
space:
mode:
authorkib <kib@FreeBSD.org>2013-10-15 06:28:11 +0000
committerkib <kib@FreeBSD.org>2013-10-15 06:28:11 +0000
commit58fc49ff4fd8e6e307314c92f73c8fb69773d58a (patch)
tree57aa1381300ba98bcbf52c6b2a0b98ff9f0a4292 /sys/fs
parentccb5ee06233d8e83eadbe6be4aa4977201299a1d (diff)
downloadFreeBSD-src-58fc49ff4fd8e6e307314c92f73c8fb69773d58a.zip
FreeBSD-src-58fc49ff4fd8e6e307314c92f73c8fb69773d58a.tar.gz
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
Diffstat (limited to 'sys/fs')
-rw-r--r--sys/fs/devfs/devfs_vnops.c8
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;
OpenPOWER on IntegriCloud