diff options
Diffstat (limited to 'sys/fs/devfs/devfs_vfsops.c')
-rw-r--r-- | sys/fs/devfs/devfs_vfsops.c | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/sys/fs/devfs/devfs_vfsops.c b/sys/fs/devfs/devfs_vfsops.c index 34d7666..55c5d3d 100644 --- a/sys/fs/devfs/devfs_vfsops.c +++ b/sys/fs/devfs/devfs_vfsops.c @@ -50,13 +50,13 @@ MALLOC_DEFINE(M_DEVFS, "DEVFS", "DEVFS data"); -static int devfs_mount __P((struct mount *mp, char *path, caddr_t data, - struct nameidata *ndp, struct thread *td)); -static int devfs_unmount __P((struct mount *mp, int mntflags, - struct thread *td)); -static int devfs_root __P((struct mount *mp, struct vnode **vpp)); -static int devfs_statfs __P((struct mount *mp, struct statfs *sbp, - struct thread *td)); +static int devfs_mount(struct mount *mp, char *path, caddr_t data, + struct nameidata *ndp, struct thread *td); +static int devfs_unmount(struct mount *mp, int mntflags, + struct thread *td); +static int devfs_root(struct mount *mp, struct vnode **vpp); +static int devfs_statfs(struct mount *mp, struct statfs *sbp, + struct thread *td); /* * Mount the filesystem |