diff options
author | Philip Guenther <guenther@cvs.openbsd.org> | 2023-03-08 04:43:16 +0000 |
---|---|---|
committer | Philip Guenther <guenther@cvs.openbsd.org> | 2023-03-08 04:43:16 +0000 |
commit | b7ec05677ee9f62c29e195e7be5125d39f7fdad9 (patch) | |
tree | d2d92930c9557994e5a771aef772966110966cc3 /sys/isofs/cd9660 | |
parent | 3f4b7c5f0adcfdffa19cefea0c39206811487db6 (diff) |
Delete obsolete /* ARGSUSED */ lint comments.
ok miod@ millert@
Diffstat (limited to 'sys/isofs/cd9660')
-rw-r--r-- | sys/isofs/cd9660/cd9660_rrip.c | 3 | ||||
-rw-r--r-- | sys/isofs/cd9660/cd9660_vfsops.c | 7 | ||||
-rw-r--r-- | sys/isofs/cd9660/cd9660_vnops.c | 8 |
3 files changed, 3 insertions, 15 deletions
diff --git a/sys/isofs/cd9660/cd9660_rrip.c b/sys/isofs/cd9660/cd9660_rrip.c index 583dac1d18f..3143b87f672 100644 --- a/sys/isofs/cd9660/cd9660_rrip.c +++ b/sys/isofs/cd9660/cd9660_rrip.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cd9660_rrip.c,v 1.16 2021/03/05 07:10:06 jsg Exp $ */ +/* $OpenBSD: cd9660_rrip.c,v 1.17 2023/03/08 04:43:08 guenther Exp $ */ /* $NetBSD: cd9660_rrip.c,v 1.17 1997/01/24 00:27:32 cgd Exp $ */ /*- @@ -314,7 +314,6 @@ cd9660_rrip_pclink(void *v, ISO_RRIP_ANALYZE *ana) /* * Relocated directory */ -/*ARGSUSED*/ static int cd9660_rrip_reldir(void *v, ISO_RRIP_ANALYZE *ana) { diff --git a/sys/isofs/cd9660/cd9660_vfsops.c b/sys/isofs/cd9660/cd9660_vfsops.c index f1b5a81b79f..ef0ffbbb152 100644 --- a/sys/isofs/cd9660/cd9660_vfsops.c +++ b/sys/isofs/cd9660/cd9660_vfsops.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cd9660_vfsops.c,v 1.96 2022/09/01 13:45:26 krw Exp $ */ +/* $OpenBSD: cd9660_vfsops.c,v 1.97 2023/03/08 04:43:08 guenther Exp $ */ /* $NetBSD: cd9660_vfsops.c,v 1.26 1997/06/13 15:38:58 pk Exp $ */ /*- @@ -522,7 +522,6 @@ out: * Make a filesystem operational. * Nothing to do at the moment. */ -/* ARGSUSED */ int cd9660_start(struct mount *mp, int flags, struct proc *p) { @@ -582,7 +581,6 @@ cd9660_root(struct mount *mp, struct vnode **vpp) /* * Do operations associated with quotas, not supported */ -/* ARGSUSED */ int cd9660_quotactl(struct mount *mp, int cmd, uid_t uid, caddr_t arg, struct proc *p) @@ -614,7 +612,6 @@ cd9660_statfs(struct mount *mp, struct statfs *sbp, struct proc *p) return (0); } -/* ARGSUSED */ int cd9660_sync(struct mount *mp, int waitfor, int stall, struct ucred *cred, struct proc *p) @@ -639,7 +636,6 @@ struct ifid { long ifid_start; }; -/* ARGSUSED */ int cd9660_fhtovp(struct mount *mp, struct fid *fhp, struct vnode **vpp) { @@ -904,7 +900,6 @@ retry: /* * Vnode pointer to File handle */ -/* ARGSUSED */ int cd9660_vptofh(struct vnode *vp, struct fid *fhp) { diff --git a/sys/isofs/cd9660/cd9660_vnops.c b/sys/isofs/cd9660/cd9660_vnops.c index 2eb47f4ba5b..7f66460e460 100644 --- a/sys/isofs/cd9660/cd9660_vnops.c +++ b/sys/isofs/cd9660/cd9660_vnops.c @@ -1,4 +1,4 @@ -/* $OpenBSD: cd9660_vnops.c,v 1.93 2022/06/26 05:20:42 visa Exp $ */ +/* $OpenBSD: cd9660_vnops.c,v 1.94 2023/03/08 04:43:08 guenther Exp $ */ /* $NetBSD: cd9660_vnops.c,v 1.42 1997/10/16 23:56:57 christos Exp $ */ /*- @@ -125,7 +125,6 @@ cd9660_setattr(void *v) * * Nothing to do. */ -/* ARGSUSED */ int cd9660_open(void *v) { @@ -137,7 +136,6 @@ cd9660_open(void *v) * * Update the times on the inode on writeable file systems. */ -/* ARGSUSED */ int cd9660_close(void *v) { @@ -282,7 +280,6 @@ cd9660_read(void *v) return (error); } -/* ARGSUSED */ int cd9660_ioctl(void *v) { @@ -294,7 +291,6 @@ cd9660_ioctl(void *v) * * NB Currently unsupported. */ -/* ARGSUSED */ int cd9660_mmap(void *v) { @@ -307,7 +303,6 @@ cd9660_mmap(void *v) * * Nothing to do, so just return. */ -/* ARGSUSED */ int cd9660_seek(void *v) { @@ -740,7 +735,6 @@ cd9660_strategy(void *v) /* * Print out the contents of an inode. */ -/*ARGSUSED*/ int cd9660_print(void *v) { |