From fd139fd7d009dbf6f6353b2011b0ff0bf4b32d44 Mon Sep 17 00:00:00 2001 From: phk Date: Thu, 12 Jun 2003 20:48:38 +0000 Subject: Initialize struct vfsops C99-sparsely. Submitted by: hmp Reviewed by: phk --- sys/fs/msdosfs/msdosfs_vfsops.c | 23 +++++++++-------------- 1 file changed, 9 insertions(+), 14 deletions(-) (limited to 'sys/fs/msdosfs') diff --git a/sys/fs/msdosfs/msdosfs_vfsops.c b/sys/fs/msdosfs/msdosfs_vfsops.c index 3c5565e..ac092b8 100644 --- a/sys/fs/msdosfs/msdosfs_vfsops.c +++ b/sys/fs/msdosfs/msdosfs_vfsops.c @@ -832,20 +832,15 @@ msdosfs_vptofh(vp, fhp) } static struct vfsops msdosfs_vfsops = { - msdosfs_mount, - vfs_stdstart, - msdosfs_unmount, - msdosfs_root, - vfs_stdquotactl, - msdosfs_statfs, - msdosfs_sync, - vfs_stdvget, - msdosfs_fhtovp, - vfs_stdcheckexp, - msdosfs_vptofh, - msdosfs_init, - msdosfs_uninit, - vfs_stdextattrctl, + .vfs_fhtovp = msdosfs_fhtovp, + .vfs_init = msdosfs_init, + .vfs_mount = msdosfs_mount, + .vfs_root = msdosfs_root, + .vfs_statfs = msdosfs_statfs, + .vfs_sync = msdosfs_sync, + .vfs_uninit = msdosfs_uninit, + .vfs_unmount = msdosfs_unmount, + .vfs_vptofh = msdosfs_vptofh, }; VFS_SET(msdosfs_vfsops, msdosfs, 0); -- cgit v1.1