git: ed40bc50dff0 - main - fifofs: ansify

From: Mateusz Guzik <mjg_at_FreeBSD.org>
Date: Tue, 07 Feb 2023 23:19:09 UTC
The branch main has been updated by mjg:

URL: https://cgit.FreeBSD.org/src/commit/?id=ed40bc50dff06219baa251f1d238249624cb74ec

commit ed40bc50dff06219baa251f1d238249624cb74ec
Author:     Mateusz Guzik <mjg@FreeBSD.org>
AuthorDate: 2023-02-07 23:18:51 +0000
Commit:     Mateusz Guzik <mjg@FreeBSD.org>
CommitDate: 2023-02-07 23:18:51 +0000

    fifofs: ansify
    
    Reported by:    clang 15
    Sponsored by:   Rubicon Communications, LLC ("Netgate")
---
 sys/fs/fifofs/fifo_vnops.c | 34 +++++-----------------------------
 1 file changed, 5 insertions(+), 29 deletions(-)

diff --git a/sys/fs/fifofs/fifo_vnops.c b/sys/fs/fifofs/fifo_vnops.c
index d9dc8eee8e60..8a567205db0b 100644
--- a/sys/fs/fifofs/fifo_vnops.c
+++ b/sys/fs/fifofs/fifo_vnops.c
@@ -126,14 +126,7 @@ fifo_cleanup(struct vnode *vp)
  */
 /* ARGSUSED */
 static int
-fifo_open(ap)
-	struct vop_open_args /* {
-		struct vnode *a_vp;
-		int  a_mode;
-		struct ucred *a_cred;
-		struct thread *a_td;
-		struct file *a_fp;
-	} */ *ap;
+fifo_open(struct vop_open_args *ap)
 {
 	struct vnode *vp;
 	struct file *fp;
@@ -268,13 +261,7 @@ fifo_open(ap)
  */
 /* ARGSUSED */
 static int
-fifo_close(ap)
-	struct vop_close_args /* {
-		struct vnode *a_vp;
-		int  a_fflag;
-		struct ucred *a_cred;
-		struct thread *a_td;
-	} */ *ap;
+fifo_close(struct vop_close_args *ap)
 {
 	struct vnode *vp;
 	struct fifoinfo *fip;
@@ -331,8 +318,7 @@ fifo_close(ap)
  * Print out internal contents of a fifo vnode.
  */
 int
-fifo_printinfo(vp)
-	struct vnode *vp;
+fifo_printinfo(struct vnode *vp)
 {
 	struct fifoinfo *fip = vp->v_fifoinfo;
 
@@ -349,10 +335,7 @@ fifo_printinfo(vp)
  * Print out the contents of a fifo vnode.
  */
 static int
-fifo_print(ap)
-	struct vop_print_args /* {
-		struct vnode *a_vp;
-	} */ *ap;
+fifo_print(struct vop_print_args *ap)
 {
 	printf("    ");
 	fifo_printinfo(ap->a_vp);
@@ -365,14 +348,7 @@ fifo_print(ap)
  */
 /* ARGSUSED */
 static int
-fifo_advlock(ap)
-	struct vop_advlock_args /* {
-		struct vnode *a_vp;
-		caddr_t  a_id;
-		int  a_op;
-		struct flock *a_fl;
-		int  a_flags;
-	} */ *ap;
+fifo_advlock(struct vop_advlock_args *ap)
 {
 
 	if ((ap->a_flags & F_FLOCK) == 0)